-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
128 lines (107 loc) · 1.91 KB
/
main.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
html, body {
font-size: 20px;
line-height: 1.3;
font-weight: 400;
font-family: "utile", sans-serif;
background-color: white;
margin: 1rem;
color: black;
}
main {
max-width: 800px;
margin: 0 auto;
}
nav ul {
font-weight: 800;
list-style-type: none;
margin: 0.5rem;
padding: 0.5rem;
text-align: right;
}
nav li {
display: inline-block;
padding: 0;
font-size: 1rem;
}
nav a {
color: black;
text-decoration: underline;
padding: 0;
}
nav a:hover {
color: rgb(0, 21, 253);
text-decoration: underline;
}
h1 {
font-size: 2rem;
font-weight: 800;
}
h2 {
font-size: 1.5rem;
}
a {
color: black;
text-decoration: underline;
}
a:hover {
color: rgb(0, 21, 253);
text-decoration: underline;
}
figure {
margin: 0;
}
figcaption {
font: 0.5rem;
font-weight: 300;
line-height: 1.3;
margin: 1rem;
color: black;
}
.highlight {
font-style: normal;
padding: 0 5px;
font-weight: 800;
background-color: yellowgreen;
}
.highlight a {
color: black;
text-decoration: underline;
padding: 0;
}
.highlight a:hover {
color: rgb(0, 21, 253);
text-decoration: underline;
}
img {
width: 100%;
}
article {
border-bottom: 1px solid black;
margin-bottom: 1rem;
clear: both;
overflow: hidden;
}
article a {
display: block;
text-decoration: none;
cursor: pointer;
}
article a:hover {
text-decoration: none;
}
article a:hover img {
/* filter: hue-rotate(90deg) saturate(200%) contrast(200%); */
filter: grayscale(100%);
}
.floatLeft figcaption {
font-size: 10px;
font-style: italic;
margin: 0;
}
@media (min-width: 850px) {
.floatLeft {
float: left;
width: 50%;
margin: 1rem 1rem 1rem 0;
}
}