-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
61 lines (49 loc) · 850 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
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: rgb(44, 44, 44);
background-color: #f9f9f9;
font-size:medium;
}
body {
padding: 2em;
padding-bottom: 0;
line-height: 1.6;
}
h1, h3 {
margin-bottom: 1em;
}
h3{
margin-top: 2em;
text-transform: uppercase;
}
ul {
list-style-type:circle;
padding: 0;
}
li {
margin-bottom: 0.5em;
}
a {
color: #4169e1;
text-decoration: none;
}
a:hover {
text-decoration:underline;
}
button {
background-color: #4169e1;
color: #fff;
border: none;
border-radius: 5px;
padding: 0.75em 1em;
cursor: pointer;
transition-duration: 0.3s;
}
button:hover {
background-color: #123dbd;
}
footer {
margin-top: auto;
text-align: center;
padding: 1em 0;
}