forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
executable file
·129 lines (117 loc) · 2.23 KB
/
index.css
File metadata and controls
executable file
·129 lines (117 loc) · 2.23 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
* {
box-sizing: border-box;
}
body {
font-family: 'Monsterrat', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-smooth: always;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
min-height: 100%;
-webkit-text-size-adjust: 100%;
background-color: #141618;
width: 100vw;
height: 100vh;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 0 auto;
width: 100%;
max-width: 800px;
}
.title {
margin-top: 2rem;
color: white;
font-size: 2rem;
width: 100%;
font-weight: 100;
text-align: center;
margin-bottom: 10%;
}
#cube {
position: relative;
align-items: center;
display: flex;
height: 250px;
justify-content: center;
width: 100%;
}
#loading {
color: white;
box-sizing: border-box;
max-width: 600px;
width: 100%;
font-size: 1.3rem;
font-weight: 200;
display: flex;
align-items: center;
flex-direction: column;
margin: 0 1rem;
}
#loading-text {
margin-bottom: 24px;
}
#loading-bar {
width: 100%;
background-color: black;
height: 12px;
border-radius: 8px;
overflow: hidden;
}
#loading-progress {
width: 0%;
background-color: rgb(64, 169, 243);
height: 100%;
}
#term {
height: 4rem;
width: 100%;
border-radius: 4px;
overflow: hidden;
margin-top: 0.75rem;
}
#start-btn {
background-color: #40a9f3;
border: 2px solid #66b9f4;
border-radius: 4px;
box-sizing: border-box;
color: white;
font-size: 20px;
height: 40px;
transition: all 0.3s ease 0s;
text-align: center;
width: 240px;
}
#start-btn:hover {
background-color: #66b9f4;
}
.xterm {
padding: 5px;
}
.xterm .xterm-viewport {
overflow-y: auto !important;
}
.xterm-cursor {
outline: transparent !important;
}