forked from kolbyjack/MMM-Wallpaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-Wallpaper.css
51 lines (45 loc) · 845 Bytes
/
MMM-Wallpaper.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
.MMM-Wallpaper .content {
background: #000;
display: flex;
}
.MMM-Wallpaper .content-fill {
background: #000;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.MMM-Wallpaper .wallpaper {
margin: auto;
width: 100%;
height: 100%;
}
.MMM-Wallpaper .crossfade-image {
transition: opacity 1s ease-in-out;
}
.MMM-Wallpaper .title {
position: absolute;
right: 25px;
bottom: 25px;
font-family: Roboto, sans-serif;
font-weight: 100;
font-size: 14px;
line-height: 25px;
}
.MMM-Wallpaper .top-gradient {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
height: 10%;
background: linear-gradient(black, transparent);
}
.MMM-Wallpaper .bottom-gradient {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
height: 10%;
background: linear-gradient(transparent, black);
}