-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
119 lines (97 loc) · 1.59 KB
/
index.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
119
*{
margin: 0;
padding: 0;
font-family: Inconsolata, monospace;
}
#content {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: 2;
}
iframe {
width: calc(100% - 20px);
padding: 10px;
min-height: 500px;
}
#content small {
padding: 3px;
}
.stuff {
text-align: center;
}
p, b {
font-size: 16px;
}
small {
font-size: 12px;
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
font-style: italic;
}
div.stuff {
max-width: 1600px;
margin: auto;
}
.tabs {
overflow: hidden;
border: 1px solid #b4b4b4;
background-color: #e6b12f;
text-align: center;
}
.tabs.sticky {
position: sticky;
top: 0;
z-index: 3;
}
.tabs button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 10px 14px;
transition: 0.1s;
margin: 0 auto;
display: block;
}
button.navbutton, button.tickerUnit {
float: right !important;
font-weight: lighter;
}
button.navbutton {
margin-left: 10px;
}
@media screen and (max-width: 600px) {
button.navbutton {
display: none;
}
}
@media screen and (max-width: 1000px) {
button.tickerUnit {
display: none;
}
}
.titleUnit {
font-weight: 800;
background-color: #d3d3d3 !important;
}
.tabs button:hover {
background-color: #d3d3d3;
}
.tabs button.active {
text-decoration: underline;
font-weight: bold;
}
.calendarcontainer {
display: none;
border-top: none;
min-height: 100px;
background: #fff url("loading.gif") no-repeat 50% 50% !important;
}