style.css
1.11 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
body,
a {
color: #808080;
}
ul.sidenav {
list-style-type: none;
margin: 0;
padding: 0;
width: 15%;
background-color: #f1f1f1;
height: 100%;
position: fixed;
overflow: auto;
}
ul.sidenav li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
ul.sidenav li a.active {
background-color: #4caf50;
color: #fff;
}
ul.sidenav li a:hover:not(.active) {
background-color: #555;
color: #fff;
}
#title {
text-align: center;
width: 100%;
font-size: 50px;
padding-bottom: 30px;
}
#content {
margin-left: 25%;
padding: 10px 16px;
height: 100%;
}
table {
width: 70%;
height: 100%;
border-collapse: collapse;
text-align: center;
}
td {
text-align: center;
border: 1px solid #ddd;
padding: 15px;
width: 20%;
height: 20%;
}
.bold {
color: #ffc0cb;
font-size: 100%;
}
.small {
color: #808080;
font-size: 8pt;
}
#show {
width: 15%;
display: inline-block;
float: left;
}
#mynav {
display: block;
margin-left: -250px;
transition: all 0.4s ease-in-out 0s;
}
#mynav.open {
transition: all 0.4s ease-in-out 0s;
float: left;
margin-left: 0px;
}