-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (113 loc) · 2.26 KB
/
Copy pathstyle.css
File metadata and controls
131 lines (113 loc) · 2.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Title font: font-family: Georgia, serif; */
/* Main body font: font-family: 'Trebuchet MS', sans-serif; */
/* Header style */
header {
background-color: #0e2617;
color: #fff;
padding: 10px 0;
margin: -10px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
}
nav li {
margin: 0 20px;
padding: 10px 0;
font-family: 'Trebuchet MS', sans-serif;
font-size: 20px;
}
nav a {
text-decoration: none;
color: #fff;
}
/* Main body style */
h1,
h2,
section,
nav,
footer {
font-family: 'Trebuchet MS', sans-serif;
}
h1 {
color: #000;
padding: 0;
}
h2 {
font-weight: normal;
color: #000;
padding: 20px 0;
font-size: 40px;
}
section {
font-weight: normal;
color: #000;
padding: 20px 0;
font-size: 25px;
}
/* Footer style */
footer {
font-weight: normal;
text-align: center;
padding: 15px;
background-color: #0e2617;
color: #fff;
margin: -10px;
}
/* HTML style (background) */
html {
background-color: #9e9c8d;
}
/* CSS for Records Page images */
.list-image {
margin-left: 20px;
margin-bottom: 20px;
width: 260px;
}
/* Style for the records list */
.records-list ol {
text-align: center;
list-style-position: inside;
margin: 0 auto;
padding: 0;
font-size: 18px;
max-width: 800px;
font-family: 'Trebuchet MS', sans-serif;
}
.records-list ol {
counter-reset: item;
}
.records-list li {
counter-increment: item;
margin-bottom: 30px;
text-align: justify;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
font-family: 'Trebuchet MS', sans-serif;
}
.records-list li::before {
content: counter(item) ". ";
font-weight: bold;
margin-right: 10px;
}
.records-list li img {
margin-left: 20px;
}
/* CSS Page for history */
.history-list ol {
margin: 0 auto;
padding: 0;
font-size: 18px;
max-width: 800px;
font-family: 'Trebuchet MS', sans-serif;
}
.history-list li {
margin-bottom: 30px;
text-align: justify;
display: flex;
padding: 15px 0;
font-family: 'Trebuchet MS', sans-serif;
}