forked from coder/code-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.scss
More file actions
152 lines (132 loc) · 2.27 KB
/
Copy pathindex.scss
File metadata and controls
152 lines (132 loc) · 2.27 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
html, body {
height: 100%;
margin: 0;
width: 100%;
}
#overlay {
background: rgba(0, 0, 0, 0.2);
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
}
#overlay {
align-items: center;
background-color: #252526;
bottom: 0;
display: flex;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
justify-content: center;
left: 0;
opacity: 1;
position: absolute;
right: 0;
top: 0;
transition: 150ms opacity ease;
z-index: 2;
}
#overlay > .message {
color: white;
margin-top: 10px;
opacity: 0.5;
}
#overlay.error > .message {
color: white;
opacity: 0.3;
}
#overlay > .activitybar {
background-color: rgb(44, 44, 44);
bottom: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 50px;
}
#overlay > .activitybar svg {
fill: white;
margin-left: 2px;
margin-top: 2px;
opacity: 0.3;
}
#overlay.error > #status {
opacity: 0;
}
#overlay>.statusbar {
background-color: rgb(0, 122, 204);
bottom: 0;
cursor: default;
height: 22px;
left: 0;
position: absolute;
right: 0;
}
#logo {
transform-style: preserve-3d;
}
#logo > svg {
fill: rgb(0, 122, 204);
opacity: 1;
width: 100px;
}
#status {
background: rgba(255, 255, 255, 0.1);
border-radius: 5px;
box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.75);
color: white;
font-size: 0.9em;
margin-top: 15px;
min-width: 100px;
position: relative;
transition: 300ms opacity ease;
}
#progress {
background: rgba(0, 0, 0, 0.2);
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
bottom: 0;
height: 3px;
left: 0;
overflow: hidden;
position: absolute;
right: 0;
}
@-moz-keyframes statusProgress {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes statusProgress {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
#fill {
animation: statusProgress 2s ease infinite;
background-size: 400% 400%;
background: linear-gradient(270deg, #007acc, #0016cc);
height: 100%;
transition: 500ms width ease;
width: 0%;
}
.reload-button {
background-color: #007acc;
border-radius: 2px;
cursor: pointer;
margin-top: 10px;
padding: 6px 10px;
}