blob: 1f60594f9dc15b4bf283b83a116b9edc50523ed3 (
plain)
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
|
/* ************************************************************************** */
/* */
/* File : site.css /_________/ */
/* Authors : Joe | */
/* Date : 06/2020 | */
/* Info : Style for GitJoe | */
/* / | */
/* \ / */
/* \_____/ */
/* */
/* ************************************************************************** */
body {
margin: 0 auto;
width: 100%;
height: 100%;
min-height: 100%;
font-family: sans-serif;
background-color: #f5f5f5;
position: relative;
min-height: 100%;
}
header {
margin: 0pt;
padding: 0pt;
width: 100%;
background-color: #ededed;
border-bottom: 2pt solid #aaa;
border-top: 0pt;
}
table {
margin-left: 5%;
margin-right: 5%;
}
div#content {
padding: 5pt 0 5pt 0;
padding-bottom: 2.5rem;
margin-left: 5%;
margin-right: 5%;
}
hr {
border-top: 1px solid #999;
border-bottom: 0px;
margin-left: 5%;
margin-right: 5%;
}
h1 {
font-size: x-large;
font-weight: bold;
margin: 2pt;
color: #292929;
}
a {
margin: 0pt;
border-collapse: collapse;
}
a:link {
color: #23b;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #23b;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #23b;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: #23b;
background-color: transparent;
text-decoration: none;
}
.h {
color: #8f3f71;
}
.d {
color: #9d0006;
}
.i {
color: #20871a;
}
a.h {
color: #8f3f71;
}
a.d {
color: #9d0006;
}
a.i {
color: #20871a;
}
a.h:hover {
background-color: #ffafef;
}
a.d:hover {
background-color: #ff9f9f;
}
a.i:hover {
background-color: #aaf77f;
}
div#content tr:hover {
background-color: #d1e2f4;
}
|