-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (39 loc) · 692 Bytes
/
style.css
File metadata and controls
47 lines (39 loc) · 692 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
width: 80%;
margin: 5% auto;
}
h1 {
border-bottom: 1px solid black;
}
#page-header h1 {
border-bottom: none;
text-align: center;
}
#page-header {
padding-bottom: 1.5rem;
border: 1px dashed green;
background-color: lightgreen;
}
img {
display: block;
margin: auto;
width: 80%;
padding: 4px;
border: 1px solid lightgrey;
border-radius: 8px;
box-shadow: 0 4px 8px 0 grey;
background-color: white;
}
img:hover {
box-shadow: 0 8px 16px 0 grey;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul, ol, p {
line-height: 1.75rem;
}