-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
82 lines (71 loc) · 1.24 KB
/
style.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: rgb(65, 67, 73);
color: white;
}
html,
body {
height: 100%;
font-family: monospace;
padding: 10px;
font-size: 25px;
}
.hidden {
display: none;
}
.output {
width: 100%;
min-height: 400px;
}
.stdout, .stderr, .social {
font-size: 15px;
width: 100%;
margin-bottom: 10px;
}
.social {
margin-bottom: 5px;
}
.stderr {
color: #659cef;
}
.flex-container {
height: 100%;
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
}
.grid-container {
display: grid;
align-items: center;
justify-content: center;
grid-auto-rows: auto;
align-items: start;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
/* grid-auto-rows: fit-content(1em);*/
grid-gap: 10px;
width: 40%;
}
.progress-bar {
width: 100%;
}
.progress-bar-background {
width: 100%;
background-color: #666666;
padding: 3px;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.progress-bar-fill {
display: block;
height: 22px;
background-color: #659cef;
border-radius: 3px;
font-size: 15px;
line-height: 22px;
padding-left: 5px;
transition: width 500ms ease-in-out;
white-space: nowrap;
}