This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
188 lines (153 loc) · 2.78 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
html,
body {
padding: 0;
margin: 0;
height: 100%;
overflow: hidden;
}
body {
font-family: -apple-system, "Helvetica Neue", Helvetica, sans-serif;
/* TODO change fonts on redesign */
/* background-color: #272C35; /* night blue */
background-color: rgb(50, 50, 50);
/* night gray */
}
/* backgound image */
.backgroudImage {
align-self: top;
display: block;
margin-left: auto;
margin-right: auto;
}
/* editor styling */
.editor {
resize: none;
box-shadow: 0 0 10px #000000;
width: 100%;
height: 100px;
position: absolute;
bottom: 25px;
font-size: 16px;
color: #FFFFFF;
background-color: rgb(60, 60, 60, 0.7);
backdrop-filter: blur(3px);
padding: 5px;
border: 0px;
}
.editor:focus {
outline: none !important;
border: 0px;
box-shadow: 0 0 10px #000000;
}
/* Status Bar */
.statusBar {
background-color: #0074D0;
overflow: hidden;
position: fixed;
bottom: 0;
width: 100%;
height: 25px;
}
/* Status link a - wraps all status elements */
.statusBar a {
float: left;
color: #f2f2f2;
font-size: 14px;
text-align: center;
padding: 4px;
text-decoration: none;
}
/* Status images in status elements - all set same size - fit bar*/
.statusBar img {
width: 21px;
height: 21px;
}
.resultList {
color: white;
list-style: none;
/* remove dots of list cause they suck */
position: fixed;
/* Sit on top of the page content */
/* Full width (cover the whole page) */
height: calc(100% - 130px);
/* Full height (cover the whole page) */
top: 0;
left: 0;
right: 0;
cursor: pointer;
margin-left: -30px;
margin-top: 0;
overflow-y: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 2px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgb(0, 0, 0, 0);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(255, 255, 255, 1);
}
li {
margin-bottom: 15px;
margin-top: 15px;
margin-right: 10px;
background-color: rgb(0, 116, 208, 1);
/*background: rgba(50, 50, 50, 0.3);*/
backdrop-filter: blur(5px);
border-radius: 6px;
padding: 5px;
/* Bubbles
display: inline-block;*/
/*Makes them stick to the left*/
display: table;
word-break: break-all;
}
li a {
color: rgb(255, 255, 255);
}
li a:hover {
color: rgb(200, 200, 200);
}
#view {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.blur {
animation: blur 2s;
animation-fill-mode: forwards;
}
@keyframes blur {
0% {
backdrop-filter: blur(0px);
}
25% {
backdrop-filter: blur(1px);
}
50% {
backdrop-filter: blur(3px);
}
100% {
backdrop-filter: blur(4px);
}
}
#explorer {
font-weight: bold;
}
#file {
border-radius: 3px;
background-color: #025ba4;
padding-left: 3px;
padding-right: 3px;
}
#file a {
text-decoration: none;
}