forked from Montellese/home-smart-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
61 lines (48 loc) · 858 Bytes
/
layout.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
html, body {
background-color: #000000;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
font-family: Roboto, Arial, Sans-serif;
color: #FFFFFF;
font-size: 100px;
-webkit-font-smoothing: antialiased;
}
.top, .vcenter, .bottom, .left, .hcenter, .right {
position: absolute;
}
.top {
top: 50px;
}
.vcenter {
top: 50%;
margin-top: -250px; /* Adjust depending on display resolution */
margin-bottom: -250px; /* Adjust depending on display resolution */
}
.bottom {
bottom: 50px;
}
.left, .right {
max-width: 450px; /* Adjust depending on display resolution */
overflow: hidden;
white-space: nowrap;
}
.left {
left: 50px;
}
.hcenter {
left: 50px;
right: 50px;
text-align: center;
}
.right {
right: 50px;
}
.widget-heading {
font-size: 30%;
}
.widget-detail {
font-size: 25%;
color: #AAAAAA;
}