-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMMM-Modulebar.css
More file actions
executable file
·63 lines (56 loc) · 1.35 KB
/
MMM-Modulebar.css
File metadata and controls
executable file
·63 lines (56 loc) · 1.35 KB
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
/*****************************************************
* MagicMirror² *
* Custom CSS for MMM-modulebar *
* *
* By Erik Pettersson *
* Based on the TouchNavigation CSS by Brian Janssen *
* MIT Licensed. *
* *
*****************************************************/
.modulebar-menu {
display: flex;
align-items: stretch;
}
.modulebar-button {
z-index: 1;
/* Border */
border-style: solid;
border-width: 2px;
border-color: #aaa;
border-radius: 15px;
/* as container */
display: flex;
justify-content: center;
align-items: center;
background: transparent;
color: inherit;
transition: opacity ease;
margin: 2px;
padding: 6px 6px;
}
.modulebar-picture {
margin: 1px 1px;
/* width: 60px;*/
/* height: 60px;*/
}
.modulebar-text {
margin: -5px 0;
}
.paint-it-black {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
opacity: 0;
pointer-events: none;
transition: opacity ease;
z-index: 999;
}
.paint-it-black--visible {
opacity: 1;
pointer-events: auto;
}