-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
170 lines (149 loc) · 3 KB
/
style.css
File metadata and controls
170 lines (149 loc) · 3 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
body {
font-family: monospace;
color: lightblue;
background-color: black;
margin: 10px;
padding: 10px;
letter-spacing: 0px;
font-weight: bold;
background-image: url('res/bg.png');
}
#main_container {
white-space: pre;
animation: glowAnim 4000ms infinite;
min-height: 80vh;
}
a.menuBtn {
text-shadow: 0 0 10px greenyellow;
color: white;
text-decoration: none;
padding: 2px;
border-radius: 3px;
font-weight: bold;
}
a:hover.menuBtn, a.activeMenuBtn {
text-shadow: 0 0 0px black;
background-color: lightgreen;
color: black;
text-decoration: none;
}
#main_container a {
color: lightgreen;
text-decoration: none;
border-radius: 0px;
border-bottom: 1px solid lightgreen;
}
h1 a {
color: lightgreen;
text-decoration: none;
}
h1 a:hover {
color: white;
}
#main_container a:hover {
background-color: lightgreen;
color: black;
text-decoration: none;
border-radius: 3px;
border-bottom: 1px solid black;
}
@keyframes glowAnim {
0% { text-shadow: 0 0 0px greenyellow; }
10% { text-shadow: 0 0 10px greenyellow; }
40% { text-shadow: 0 0 3px greenyellow; }
41% { text-shadow: 0 0 10px greenyellow; }
42% { text-shadow: 0 0 3px greenyellow; }
60% { text-shadow: 0 0 15px greenyellow; }
80% { text-shadow: 0 0 4px greenyellow; }
100% { text-shadow: 0 0 10px greenyellow; }
}
@keyframes blinkingAnim {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
#crsr {
animation: blinkingAnim 800ms infinite;
padding-left: 5px;
}
h1 {
padding: 0px;
margin: 0px;
padding-bottom: 10px;
margin-bottom: 10px;
font-weight: lighter;
color: white;
animation: glowAnim 4000ms infinite;
}
#topMenu, #submenu {
padding: 0px;
margin: 0px;
margin-bottom: 10px;
}
#topMenu {
border-bottom: 1px dashed #333333;
margin-bottom: 10px;
padding-bottom: 15px;
}
#submenu {
padding-left: 20px;
border-bottom: 1px dashed #333333;
padding-bottom: 10px;
}
#submenu:empty {
display: none;
}
@media only screen and (orientation : landscape)
{
#main_container, #topMenu {
font-size: x-large;
}
#topMenu {
font-size: x-large;
}
#submenu {
font-size: large;
}
h1 {
font-size: 170%;
}
}
@media only screen and (orientation : portrait)
{
#main_container, #topMenu {
font-size: xx-large;
}
#topMenu {
font-size: xx-large;
}
#submenu {
font-size: x-large;
}
h1 {
font-size: 190%;
}
}
#img {
opacity: 0;
position: absolute;
pointer-events: none;
touch-action: none;
}
.show {
opacity: 0.7 !important;
transition: opacity 0.1s ease-in;
}
.hide {
opacity: 0 !important;
}
.footer {
text-align: left;
position: fixed;
bottom:0;
width: 100%;
background-color: #333333;
background-color: black;
background-image: url('res/bg.png');
font-size: small;
padding: 3px;
}