Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/src/shell.css
4129 views
1
body {
2
font-family: arial;
3
margin: 0;
4
padding: none;
5
}
6
7
.emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; }
8
div.emscripten { text-align: center; }
9
div.emscripten_border { border: 1px solid black; }
10
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
11
canvas.emscripten { border: 0px none; background-color: black; }
12
13
#emscripten_logo {
14
display: inline-block;
15
margin: 0;
16
padding: 6px;
17
width: 265px;
18
}
19
20
.spinner {
21
height: 30px;
22
width: 30px;
23
margin: 0;
24
margin-top: 20px;
25
margin-left: 20px;
26
display: inline-block;
27
vertical-align: top;
28
29
-webkit-animation: rotation .8s linear infinite;
30
-moz-animation: rotation .8s linear infinite;
31
-o-animation: rotation .8s linear infinite;
32
animation: rotation 0.8s linear infinite;
33
34
border-left: 5px solid rgb(235, 235, 235);
35
border-right: 5px solid rgb(235, 235, 235);
36
border-bottom: 5px solid rgb(235, 235, 235);
37
border-top: 5px solid rgb(120, 120, 120);
38
39
border-radius: 100%;
40
background-color: rgb(189, 215, 46);
41
}
42
43
@-webkit-keyframes rotation {
44
from {-webkit-transform: rotate(0deg);}
45
to {-webkit-transform: rotate(360deg);}
46
}
47
@-moz-keyframes rotation {
48
from {-moz-transform: rotate(0deg);}
49
to {-moz-transform: rotate(360deg);}
50
}
51
@-o-keyframes rotation {
52
from {-o-transform: rotate(0deg);}
53
to {-o-transform: rotate(360deg);}
54
}
55
@keyframes rotation {
56
from {transform: rotate(0deg);}
57
to {transform: rotate(360deg);}
58
}
59
60
#status {
61
display: inline-block;
62
vertical-align: top;
63
margin-top: 30px;
64
margin-left: 20px;
65
font-weight: bold;
66
color: rgb(120, 120, 120);
67
}
68
69
#progress {
70
height: 20px;
71
width: 300px;
72
}
73
74
#controls {
75
display: inline-block;
76
float: right;
77
vertical-align: top;
78
margin-top: 30px;
79
margin-right: 20px;
80
}
81
82
#output {
83
width: 100%;
84
height: 200px;
85
margin: 0 auto;
86
margin-top: 10px;
87
border-left: 0px;
88
border-right: 0px;
89
padding-left: 0px;
90
padding-right: 0px;
91
display: block;
92
background-color: black;
93
color: white;
94
font-family: 'Lucida Console', Monaco, monospace;
95
outline: none;
96
}
97
98