generated from satcompetition/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
109 lines (94 loc) · 1.78 KB
/
main.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
:root {
--background-color-1: #2D82B7;
--background-color-2: #CEEAF7;
--text-color: #141B41;
--link-color-1: #8b0b30;
--link-color-2: #141B41;
--border-color: #454A6E;
}
body {
margin:0px;
padding:5px;
background:var(--background-color-1);
color:var(--text-color);
}
a:link { color:var(--link-color-1); text-decoration:none; }
a:visited { color:var(--link-color-1); text-decoration:none; }
a:hover { color:var(--link-color-1); }
a.active { color:var(--link-color-2); }
h1 {
font-size:4em;
font-weight:bold;
margin-top:60px;
margin-bottom:5px;
margin-left: 20px;
padding:0px;
color:var(--text-color);
}
.main {
width:100%;
height:100%;
overflow:hidden;
}
.navigation {
padding:10pt;
height:100%;
line-height: 200%;
float:left;
position:fixed;
overflow-y:auto;
}
.navigation ul {
margin: 0;
padding: 0;
margin-left: 20px;
color: var(--text-color);
}
.heading {
padding:15px;
max-width:1024px;
min-width:600px;
margin-left:250px;
margin-right:250px;
height:250px;
}
.content {
padding:15px;
position:absolute;
top:250px;
bottom: 5px;
max-width:1024px;
min-width:600px;
margin-left:250px;
margin-right:250px;
overflow-y:auto;
background:var(--background-color-2);
}
.content ul li {
margin:10pt
}
td.date {
font-weight:bold;
}
table, th, td {
border:1px solid var(--border-color);
border-spacing:0px;
}
th, td {
padding:5px;
}
table thead {
background-color:var(--background-color-1);
color:var(--link-color-1);
font-weight: bold;
cursor: default;
}
table tr.vbs {
background-color:var(--background-color-1);
color:var(--link-color-1);
font-weight: bold;
cursor: default;
}
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"
}