-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (65 loc) · 1.04 KB
/
style.css
File metadata and controls
78 lines (65 loc) · 1.04 KB
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
/* Basic reset for improved consistency across browsers */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
background-color: #fafafa;
color: #212121;
line-height: 1.6;
}
#content {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
color: #263238;
}
a.anchor {
display: none; /* hide the anchor links */
}
a {
color: #1e88e5;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #0d47a1;
text-decoration: underline;
}
ul {
list-style-type: none;
margin-bottom: 20px;
}
li {
margin-bottom: 8px;
position: relative;
padding-left: 20px;
}
li > ul {
margin-top: 8px;
margin-left: 20px;
}
/* Different levels of nested lists can have different bullet styles */
li:before {
content: "•";
position: absolute;
left: 0;
color: #b0bec5;
}
li li:before {
content: "-";
}
li li li:before {
content: "*";
}
em {
font-style: italic;
color: #616161;
}