-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathscreen.css
109 lines (89 loc) · 1.25 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
html {
font-size: 8px;
font-family: Montserrat;
}
main {
display: flex;
flex-direction: column;
}
main > section:nth-child(1) {
margin: 0 0.5em;
}
p {
margin: 2px;
padding: 2px;
}
main > section:nth-child(2) {
margin: 0;
flex: 1;
}
.adslot_1 {
width: 320px;
height: 50px;
overflow: hidden;
}
@media (min-width: 400px) {
main {
display: flex;
flex-direction: row;
}
.adslot_1 {
width: 234px;
height: 60px;
}
}
@media (min-width: 800px) {
html {
font-size: 14px;
}
.adslot_1 {
width: 300px;
height: 250px;
}
}
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: 2px;
width: 100%;
margin: 0;
}