-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnibbles.css
More file actions
100 lines (87 loc) · 1.75 KB
/
nibbles.css
File metadata and controls
100 lines (87 loc) · 1.75 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
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap");
body {
font-family: "Source Sans Pro", sans-serif;
font-size: 12pt;
line-height: 1.4em;
color: black;
background-color: #c7c2b3;
margin: 0;
display: grid;
grid-template-rows: 10px auto 1fr 12px;
grid-template-columns: minmax(10px, 15%) auto 1fr auto minmax(10px, 15%);
height: 100vh;
}
body .layout-content {
grid-row: 3;
grid-column: 2 / -2;
margin-top: 11px;
overflow: hidden;
border-radius: 3px;
border: 1px solid #a8a497;
}
@media (max-width: 790px) {
body {
grid-template-columns: 10px auto 1fr auto 10px;
}
}
#playground-screen {
width: 100%;
height: 100%;
background-color: black;
display: flex;
align-items: center;
justify-content: center;
}
#playground-loading {
color: #ddd;
}
#playground-progress {
display: block;
background-color: #ddd;
width: 1px;
}
#playground-intro {
color: #ddd;
flex-direction: column;
align-items: center;
justify-content: center;
align-self: stretch;
user-select: none;
}
#playground-intro h2 {
color: white;
font-size: 20pt;
margin-bottom: 20px;
}
#playground-intro p {
margin: 6px 12px;
}
#playground-intro .strut {
min-height: 25%;
flex: 0 0;
}
#playground-error-msg {
display: none;
flex-direction: column;
align-self: stretch;
align-items: center;
justify-content: stretch;
width: 60%;
padding: 40px 0;
}
#playground-error-title {
color: white;
font-size: 14pt;
margin-bottom: 16px;
}
#playground-error-text {
color: white;
font-size: 10.5pt;
padding: 10px;
background-color: #333;
border-radius: 3px;
display: block;
overflow: auto;
width: 100%;
flex: 1;
}