forked from jochasinga/firepot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (62 loc) · 1.12 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
@import url('https://fonts.googleapis.com/css?family=Share+Tech+Mono');
html, body {
display: flex;
background: #222;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
margin: 0;
}
#container {
display: flex;
width: 100%;
height: 33%;
min-height: 240px;
justify-content: center;
align-items: center;
margin: 0 auto;
background-image: url('public/light-wool.png')
}
#contents {
width: 395px;
font-family: 'Share Tech Mono', monospace;
font-size: 300%;
color: #ddd;
background-color: #222;
text-align: center;
vertical-align: -webkit-baseline-middle;
border-radius: 8px;
}
#name {
font-size: 50%;
padding: 16px 12px;
border-bottom: 1px solid #ddd;
}
#rgb {
padding: 8px;
}
#r {
display: inline;
color: #e22;
}
#g {
display: inline;
color: #2e2;
}
#b {
display: inline;
color: #33f;
}
@media screen and (orientation: portrait) {
#container {
height: 25%;
}
#contents {
width: 80%;
font-size: 600%;
}
#name {
font-size: 50%;
}
}