-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (82 loc) · 1.33 KB
/
style.css
File metadata and controls
102 lines (82 loc) · 1.33 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
body {
width: 8.5in;
height: 11in;
margin: auto;
border-width: thick;
background: white;
}
html {
background: grey;
}
svg {
vertical-align: baseline;
}
body > div {
margin: 45px;
padding-top: 30px;
}
/* Contact Details */
h1 {
font-family: serif;
color: #3f88ac;
}
h1 ~ ul {
display: flex;
flex-direction: row;
justify-content: center;
}
h1 ~ ul > li {
list-style-type: none;
}
h1 ~ ul > li:not(:last-child)::after {
content: "•";
}
/* Job Details */
section > h2 ~ section > p:nth-child(2n) {
text-align: right;
}
section > h2 ~ section {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
section > h2 ~ section > *:last-child:nth-child(3n - 1) {
grid-column: span 2;
}
/* Header stuff */
section > h1 {
text-align: center;
}
section > h1 ~ p {
text-align: center;
}
/* Major Section */
section > section > h2 {
border-bottom: 2px solid #3f88ac;
}
h1,h2,h3,p,ul {
margin: 2px 0px;
}
h2 {
font-family: 'Open Sans', sans-serif;
font-size: 24px;
color: #3f88ac;
}
h3 {
font-family: 'Open Sans', sans-serif;
font-size: 18.72px;
}
p,li {
font-size: 14px;
}
section > section > section li::before {
content: "○ ";
color: #3f88ac;
}
section > section > section ul {
padding-left: 5px;
list-style: none;
}
section > section ul {
padding-left: 5px;
list-style: none;
}