forked from EN20M/MMM-TouchAlarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMM-TouchAlarm.css
111 lines (90 loc) · 1.82 KB
/
MMM-TouchAlarm.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
109
110
111
.mmm-touchalarm .display-set-alarm-time {
margin-left: 15px;
}
.MMM-TouchAlarm-modal {
position: fixed;
text-align: left;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.MMM-TouchAlarm-modal.bordered {
border: 1px solid white;
padding: 25px;
border-radius: 15px;
}
.MMM-TouchAlarm-blur {
-webkit-filter: blur(2px) brightness(50%);
filter: blur(2px) brightness(50%);
}
.settime-container {
display: flex;
flex-wrap: wrap;
}
.settime-container .cell {
flex-grow: 1;
text-align: center;
width: 45%;
}
.settime-container .middle-cell {
width: 10%;
line-height: 70px;
font-size: 50px;
}
.settime-container .button-cell {
height: 50px;
}
.settime-container .number-cell {
line-height: 70px;
font-size: 50px;
}
.settime-container button {
height: 100%;
width: 100%;
border: 1px solid white;
border-radius: 15px;
background-color: black;
color: #aaa;
font-size: 30px;
}
.settime-container .button-ok {
margin-top: 30px;
line-height: 50px;
}
.alarm-container {
text-align: center;
}
.alarm-container .close-container {
text-align: right;
margin-top: -20px;
margin-right: -10px;
}
.alarm-container .close-icon {
/* Empty */
}
.alarm-container i.alarm {
width: 100%;
font-size: 75px;
}
.alarm-container .alarm-time {
width: 100%;
font-size: 100px;
margin-top: 50px;
}
.alarm-container button {
height: 100%;
width: 100%;
border: 1px solid white;
border-radius: 15px;
background-color: black;
color: #aaa;
font-size: 30px;
}
.alarm-container .button-snooze {
width: 100%;
margin-top: 50px;
line-height: 50px;
}