-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
95 lines (78 loc) · 1.48 KB
/
default.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
@import url('https://fonts.googleapis.com/css?family=Dosis');
html, body {
margin: 0;
font-family: 'Dosis', sans-serif;
font-size: 30px;
text-transform: uppercase;
background-color: #DAD6CA;
}
.wrap {
max-width: 480px;
margin: 0 auto;
padding: 0.7em 1em 0;
}
.output-half .wrap {
padding: 0.7em 0.25em 0;
}
.input-half, .output-half {
text-align: center;
}
.input-half {
background-color: #5A504C;
/*color: #DAD6CA;*/
color: rgba(255, 255, 255, 0.5);
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.input-half strong {
font-weight: normal;
color: #FFFFFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
form {
margin: 0;
}
.output-half {
background-color: #DAD6CA;
color: rgba(0, 0, 0, 0.5);
border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.output-half strong {
font-weight: bold;
color: #E86539;
}
ul.outputs {
margin: 0.2em 0 1em;
}
ul.outputs > li {
padding: 0 0.1em;
border-left: 1px solid rgba(255, 255, 255, 0.3);
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
ul.outputs > li:first-child {
padding-left: 0;
border-left: 0;
}
ul.outputs > li:last-child {
padding-right: 0;
border-right: 0;
}
.output-half img {
width: 64px;
margin-bottom: 0.2em;
}
.output-half output {
opacity: 1;
transition: opacity 200ms;
}
ul.horizontal {
display: table;
table-layout: fixed;
width: 100%;
padding: 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
ul.horizontal > li {
display: table-cell;
}