forked from rogerpoliver/resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (119 loc) · 1.79 KB
/
style.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
/* General Reset */
body, h1, h2, p, ul {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2em;
color: #333;
}
header p {
margin: 5px 0;
color: #555;
font-size: 1em;
}
header p a {
color: #0073e6;
text-decoration: none;
}
header p a:hover {
text-decoration: none;
}
section {
margin-bottom: 20px;
}
section h2 {
font-size: 1.5em;
margin-bottom: 10px;
color: #444;
border-bottom: 2px solid #0073e6;
padding-bottom: 5px;
}
section p, section ul {
margin-left: 15px;
font-size: 1em;
color: #555;
}
section ul {
list-style: disc;
margin-top: 5px;
}
section ul li {
margin-bottom: 5px;
}
#skills {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding-left: 0;
}
#skills li {
width: calc(33.33% - 10px);
list-style-type: disc;
}
.date {
font-style: italic;
color: #777;
font-size: 0.9em;
margin-top: 2px;
}
footer {
text-align: center;
font-size: 0.9em;
color: #888;
margin-top: 20px;
border-top: 1px solid #ddd;
padding-top: 10px;
}
#volunteering div {
margin-bottom: 20px;
}
#volunteering h3 {
font-size: 1.2em;
color: #444;
}
#volunteering p.date {
font-style: italic;
color: #777;
font-size: 0.9em;
margin-top: 2px;
}
#volunteering p {
color: #555;
font-size: 1em;
}
@media print {
body {
background: #fff;
color: #000;
}
.container {
box-shadow: none;
border: none;
}
a {
color: #000;
text-decoration: none;
}
}