-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJLEportfolio.css
96 lines (82 loc) · 1.3 KB
/
JLEportfolio.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
html, body {
margin: 0;
height: 100%;
}
#header {
padding: 60px;
text-align: left;
background: #222E50;
color: white;
font-size: 30px;
}
#footer {
width: 100%;
background-color: #222E50;
color: white;
text-align: left;
padding: 10px;
}
h1 {
font-family: 'Nunito', sans-serif;
font-weight: 900;
font-size: 48px;
}
h2 {
font-family: 'Nunito', sans-serif;
font-weight: 900;
font-size: 32px;
}
h3 {
font-family: 'Nunito', sans-serif;
font-size: 24px;
font-weight: 900;
}
p {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
}
a:link {
color: black;
}
a:visited {
color: black;
}
strong-link { /* offset highlight */
position: relative;
font-weight: bold;
}
strong-link::before { /* offset highlight */
background-color: #78D5D7;
content: "";
position: absolute;
width: calc(100% + 4px);
height: 60%;
left: -2px;
bottom: 0;
z-index: -1;
}
/*
a:hover {
background-color: #78D5D7;
}
*/
strong { /* offset highlight */
position: relative;
font-weight: bold;
}
strong::before { /* offset highlight */
background-color: #EAD94C;
content: "";
position: absolute;
width: calc(100% + 4px);
height: 60%;
left: -2px;
bottom: 0;
z-index: -1;
}
hr.dotted {
border-top: 1px dashed #222E50;
}
.r-pad {
padding-right: 24px;
}