-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
174 lines (172 loc) · 3.08 KB
/
style.css
File metadata and controls
174 lines (172 loc) · 3.08 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
ul {
padding-left: 1.2em;
list-style-position: outside;
}
/* Links section: single line on desktop, stacked on mobile */
.links-list a {
display: inline;
}
@media (max-width: 600px) {
.links-list a {
display: block;
margin-bottom: 8px;
}
.links-list {
text-align: center;
}
}
/* Style for summary list in Full Stack Engineer section */
.summary-list {
margin: 0 0 1.5em 0;
padding-left: 1.2em;
font-size: 0.9375em;
color: #222;
}
.summary-list li {
margin-bottom: 0.5em;
}
body {
background: #ececec;
min-height: 100vh;
margin: 0;
font-family: 'Segoe UI', Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
.paper {
background: #fff;
box-shadow: 0 10px 36px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
border-radius: 8px;
max-width: 800px;
width: 100%;
margin: 40px 0;
padding: 48px 56px;
min-height: 900px;
}
@media (max-width: 900px) {
.paper {
max-width: 100vw;
padding: 24px 8px;
margin: 16px 0;
min-height: 0;
}
}
@media (max-width: 800px) {
.paper {
padding: 24px 8px;
margin: 16px 0;
min-height: 0;
}
}
/* Center all headers */
h1, h2, h3, h4 {
color: #222;
margin-top: 0;
text-align: center;
}
h1 {
font-size: 2.2em;
font-weight: 700;
letter-spacing: 0.02em;
}
.contact {
font-size: 1em;
color: #444;
margin-bottom: 18px;
text-align: center;
}
.section {
margin-bottom: 32px;
}
.section > p {
font-size: 0.9375em;
}
.section-title {
font-size: 1.15em;
font-weight: 600;
color: #333;
margin-bottom: 8px;
letter-spacing: 0.01em;
}
.skills, .awards {
display: flex;
flex-wrap: wrap;
gap: 8px 24px;
font-size: 1em;
color: #222;
/*justify-content: space-between;*/
}
.skills span, .awards span {
background: #f5f5f5;
border-radius: 4px;
padding: 2px 8px;
margin-bottom: 4px;
}
.exp-job {
margin-bottom: 18px;
}
.exp-title {
font-weight: 600;
color: #222;
}
.exp-company {
color: #555;
}
.second-page .exp-job {
margin-bottom: 2em;
}
/* Responsive right-aligned job dates */
.exp-job {
display: flex;
flex-wrap: wrap;
align-items: baseline;
justify-content: space-between;
}
.exp-title, .exp-company {
display: inline;
}
.exp-dates {
color: #888;
font-size: 0.95em;
text-align: right;
min-width: 160px;
margin-left: auto;
}
@media (max-width: 600px) {
.exp-job {
flex-direction: column;
align-items: flex-start;
}
.exp-dates {
text-align: left;
margin-left: 0;
margin-top: 4px;
}
}
.exp-details {
margin: 8px 0 0 0;
color: #222;
font-size: 1em;
}
.links {
margin-top: 24px;
font-size: 0.9em;
}
.links a {
color: #0077cc;
text-decoration: none;
margin-right: 1px;
}
.links a:hover {
text-decoration: underline;
}
.divider {
border: none;
border-top: 1px solid #eee;
margin: 32px 0;
}
/* Simulate multiple pages */
.paper + .paper {
margin-top: 0;
}