-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (98 loc) · 1.6 KB
/
styles.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
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
body {
padding: 0;
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: flex;
}
a {
margin: 0;
padding: 0;
text-decoration: none;
font-size: medium;
font-family: sans-serif;
}
h1 {
font-family: sans-serif;
font-size: xx-large;
}
h2 {
font-family: sans-serif;
font-size: x-large;
}
table {
table-layout: fixed;
width: 100%;
border-collapse: collapse;
text-align: left;
}
tbody tr:nth-child(even) {
background-color: snow;
}
td {
padding: 0.25em 0em;
}
td:first-child, th:first-child {
padding-left: 1em;
}
td > a {
color: darkslategray;
}
th {
background-color: snow;
font-family: sans-serif;
font-weight: bold;
border-bottom: solid;
border-width: thin;
padding-top: 1em;
}
.grid {
display: grid;
grid-template-columns: 16em auto
}
.header {
grid-column: 1 / span 2;
background-color: cornflowerblue;
padding: 20px;
}
.header h1 {
margin: auto;
color: azure;
}
.sideBar {
background-color: lavender;
padding: 20px 0px;
}
.sideBar i {
margin: 0;
padding: 0;
text-decoration: none;
font-size: medium;
font-family: sans-serif;
}
div.sideBar a {
color: cornflowerblue;
padding: 10px 0px 10px 20px;
display: block;
font-weight: bolder;
}
div.sideBar i {
color: cornflowerblue;
padding: 10px 0px 10px 20px;
display: block;
font-style: normal;
}
.content {
background-color: whitesmoke;
padding: 20px;
}
content h2 {
background-color: cornflowerblue;
margin: 0;
padding: 0;
}