-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (57 loc) · 955 Bytes
/
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
body {
display: flex;
flex-direction: column;
}
body {
font-family: 'IBM Plex Mono', monospace;
font-size: 1.2rem;
font-weight: light;
line-height: 1.6rem;
max-width: 80ch;
background-color: #f5f5f5;
color: #111;
margin: 1em auto;
padding: 1em;
}
h1, h2 {
font-family: 'Megrim', sans-serif;
}
h1 {
font-size: 3rem;
line-height: 3rem;
}
h2 {
font-size: 2rem;
line-height: 2rem;
}
a,
a:active,
a:visited {
text-decoration: underline;
color: #111;
}
a:hover {
text-decoration: none;
}
p.projects {
margin-top: 2rem;
}
p.projects a {
display: inline-block;
padding: 2rem 2.1rem;
border: 1px solid #111;
/* min-width: 20ch; */
text-align: center;
text-decoration: none;
}
p.projects a:hover{
text-decoration: underline;
}
p.projects a:nth-child(odd) {
background-color: #111;
color: #f5f5f5;
}
img {
height: 250px;
margin: 0 auto;
}