-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (71 loc) · 1.27 KB
/
Copy pathindex.css
File metadata and controls
84 lines (71 loc) · 1.27 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
body, header, main, section, h1, h3, ul, ul>li{
margin: 0;
padding: 0;
}
a, a:hover, a:visited{
color: inherit;
text-decoration: none;
}
/* ----design---- */
body{
text-align: center;
background-color: #1f1f1f;
color: #d0d0d0;
}
.header{
padding: 10px auto;
border-bottom: 5px double gray;
}
h1{
word-break: keep-all;
margin: 30px 0;
}
h3{
word-break: keep-all;
margin: 0;
}
.reportSection{
width: 80%;
margin: 0 auto;
text-align: center;
border-bottom: 2px dashed gray;
}
.reportHeader{
margin: 16px auto;
padding: 0 10px;
width: fit-content;
height: fit-content;
border-radius: 4px;
border-left: 5px solid #d0d0d0;
border-right: 5px solid #d0d0d0;
}
.reportList{
margin: 16px auto;
list-style: none;
width: 80%;
}
.reportList li{
display: inline-block;
text-align: center;
margin: 0 1%;
}
.reportList li, .reportList li a:visited{
padding: 5px;
font-weight: medium;
color: #40B040;
}
.reportList li a:hover{
text-decoration: underline;
text-shadow: 0 0 10px #80F080;
color: #c0c0c0;
}
.footer{
float: right;
margin-right: 2%;
}
.footer a{
display: block;
text-align: right;
font-weight: bold;
font-style: oblique;
}