-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
52 lines (45 loc) · 804 Bytes
/
common.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
body {
font-size: 16px;
font-family: sans-serif;
background-color: hsl(180, 35%, 90%);
padding: 0;
margin: 0;
}
nav {
float: left;
position: fixed;
max-width: 20vw;
line-height: 1.5rem;
background-color: hsl(140,25%,90%);
height: 100vh;
box-shadow: 2px 1px 1px hsl(140,25%,30%);
padding: 0.5rem;
overflow: scroll;
}
main {
position: relative;
left: 21vw;
max-width: 70vw;
line-height: 2.5rem;
padding: 1em 5vw;
}
p {
font-size: 1.15rem;
letter-spacing: 0.05em;
word-spacing: 0.015em;
}
a {
color: hsl(300, 70%, 20%);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ol, ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.part_item {
text-decoration: underline;
}