forked from caspervonb/toneofsorting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen.css
90 lines (73 loc) · 1.07 KB
/
screen.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
83
84
85
86
87
88
89
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
html {
font-family: Montserrat;
}
main {
display: flex;
flex-direction: column;
}
main > section:nth-child(1) {
text-align: center;
margin: 0 0.5em;
}
main > section:nth-child(2) {
margin: 0;
flex: 1;
}
.adsbygoogle {
display: none;
}
@media screen and (min-width: 400px) {
main {
display: flex;
flex-direction: row;
}
.adsbygoogle {
display: block;
}
}
output {
display: flex;
height: 100%;
justify-content: space-around;
}
output span {
color: #ffffff;
font-weight: bold;
font-size: 16px;
background-color: #3498db;
}
output span.ball {
border-radius: 100px;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
display: inline-block;
margin-left: 10px;
align-self: center;
}
output span.bar {
flex: 1;
align-self: flex-end;
}
output span.test {
background-color: #e74c3c;
}
output span.swap {
background-color: #27ae60;
}
label {
display: block;
}
input, select {
padding: 3px;
width: 100%;
margin: 0;
}