-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
161 lines (132 loc) · 3 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
@font-face { font-family: Pixel; src: url('fonts/DisposableDroidBB.otf'); }
@font-face { font-family: Pixel; font-weight: bold; src: url('fonts/DisposableDroidBB_bld.otf');}
@font-face { font-family: Computer; src: url('fonts/GamegirlClassic-9MVj.ttf');}
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(webfonts/fa-solid-900.eot);src:url(webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(webfonts/fa-solid-900.woff2) format("woff2"),url(webfonts/fa-solid-900.woff) format("woff"),url(webfonts/fa-solid-900.ttf) format("truetype"),url(webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}
h1, h2, h3, h4, h5{
font-family: Computer, sans-serif;
}
h5 {
margin-top: 0;
margin-bottom: 0;
margin-right: 10px;
}
body {
display: flex;
font-family: Pixel, sans-serif;
text-transform: uppercase;
line-height: 1.25em;
flex-direction: row;
}
body section {
flex: 1 0;
}
body main {
display: grid;
grid-template-columns: 120px auto
}
body main section:first-child img {
float: left;
margin-top: 5em;
margin-left: 1em;
max-width: 100px;
transform: translateX(-15px) translateY(-26px) rotate(-5deg);
/* margin: -50px auto 0; */
/* border-radius: 50%; */
overflow: hidden;
box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
body main section:last-child {
flex: 2 0;
justify-content: flex-start;
}
.left-column img {
display: flex;
flex-direction: column;
max-width: 300px;
}
.story p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.25em
}
.story p:last-child {
margin-bottom: 0.5em;
}
main article {
width: 80%;
margin-right: auto;
margin-bottom: 3em;
}
main article.general {
display: grid;
grid-template-columns: 1fr 1fr;
}
main article.story {
margin-bottom: 0;
}
main article.skills section.table {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
margin-bottom: 1em;
}
main article.skills {
white-space: nowrap
}
main article.skills span {
display: flex;
}
muted {
color: #f0f0f0;
}
.experience article section.table {
display: grid;
grid-template-columns: 1fr 2fr;
}
q {
display: block;
margin-bottom: 1em;
quotes: '\201c' '\201d' '\2018' '\2019';
}
q::before {
content: open-quote;
}
q::after {
content: close-quote;
}
@media print
{
.no-print, .no-print *
{
display: none !important;
}
.page-break {page-break-after: always;}
.page-break-before {page-break-before: always;}
.experience-entry {page-break-inside: avoid;}
}
@media screen and (max-width: 768px) {
body {
flex-direction: column-reverse;
margin-left: 1em;
}
body main {
display: block
}
body main section:first-child {
display: none
}
.left-column img {
max-width: 95vw;
}
main article {
width: 95%;
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.25em;
}
h5 {
font-size: 0.7em;
}
}