-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (96 loc) · 1.67 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
@import url('https://fonts.googleapis.com/css?family=Lato');
body {
font-family: 'Lato', sans-serif;
font-size: 16px;
margin: .5em .5em 2em;
overflow-x: hidden;
height: 100%;
}
body p:first-of-type,
body p:nth-child(2),
#bradleyrastrullo,
#interests + ul,
h1,
h2 {
text-align: center;
}
body ul {
padding-left: 1rem;
margin-top: .25rem;
margin-bottom: 2rem;
}
body br {
display: block;
content: "";
height: .5rem;
}
#experience + p,
#experience + p + ul + p,
#experience + p + ul + p + ul + p,
#experience + p + ul + p + ul + p +ul + p {
margin-bottom: 0;
}
#experience + p,
#experience + p + ul + p,
#experience + p + ul + p + ul + p,
#experience + p + ul + p + ul + p +ul + p {
margin-bottom: 0;
}
#education,
#education + p,
#interests,
#interests + p {
font-size: .9rem;
}
body p:nth-last-child(3) {
font-size: .9rem;
float: left;
width: 50%;
}
body p:nth-last-child(2) {
font-size: .9rem;
float: right;
width: 50%;
}
body p:nth-last-child(3) br {
margin: 0;
height: 0;
}
body p:nth-last-child(3) strong,
body p:nth-last-child(2) strong:first-child,
body p:nth-last-child(2) em {
display: block;
}
body p:last-child::before {
content: "";
clear: both;
display: table;
}
body p:last-child {
text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
body {
margin: 1em 5em 2em;
}
}
@media only screen and (min-width: 1000px) {
body {
margin: 1em auto 2em;
max-width: 60em;
}
}
@media only screen and (min-width: 768px) {
html {
font-size: 16px;
}
body p:first-of-type {
margin: 0;
}
#bradleyrastrullo + p {
margin-top: 0;
}
ul ~ p em {
margin-left: auto;
}
}