-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (59 loc) · 1.01 KB
/
Copy pathstyles.css
File metadata and controls
68 lines (59 loc) · 1.01 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
body {
font-family: "Arial", "Helvetica", Sans-Serif;
font-size: 1em;
background-color: beige;
color: dimgray;
margin-left: 10px;
}
.item {
text-decoration: none;
font-weight: normal;
border: 2px solid green;
border-radius: 5px;
background-color: white;
color: green;
padding: 5px 7px;
font-size: 1em;
width: 120px;
height: 16px;
margin: 2px;
margin-left: 10px;
display: inline-block;
text-align: center;
}
.item:hover {
background-color: gold;
}
.sub {
list-style-type: none;
padding: 3px;
margin: 5px;
}
.line {
border-bottom: solid 2px;
border-color: dimgray;
}
H1 {
font-size: 2.25em;
font-weight: bold;
margin-bottom: 0px;
}
H2 {
font-size: 1.2em;
font-weight: bold;
color: indianred;
margin-top: 8px;
margin-bottom: 4px;
margin-left: 4px;
}
div.foot {
font-size: 0.8em;
font-style: italic;
color: dimgray;
}
div.foot A {
color: dimgray;
}
div.foot A:hover {
color: red;
}