-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
51 lines (45 loc) · 1.27 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
@import url(https://code.getmdl.io/1.3.0/material.blue_grey-red.min.css);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500|Roboto+Mono|Roboto+Condensed:400,700&subset=latin,latin-ext);
.daily-photo .mdl-layout {
background: center no-repeat #ccc;
background-size: cover;
}
@media (orientation: landscape) {
.daily-photo .mdl-layout {
background-image: url("https://source.unsplash.com/1920x1080/daily?nature");
}
}
@media (orientation: portrait) {
.daily-photo .mdl-layout {
background-image: url("https://source.unsplash.com/900x1600/daily?nature");
}
}
.next-task {
position: absolute;
bottom: 12%;
margin: 0 auto;
width: 100%;
color: #fff;
text-align: center;
text-shadow: 1px 1px 5px black;
font-size: 1.3em;
}
.next-task h2 {
font-size: 2em;
margin: 0.3em 0 0.6em 0;
}
.next-task h2 a, div.mdl-card a {
text-decoration: none;
}
.task-card a i {
font-size: 1em;
position: relative;
top: 2px;
}
/* Ugly hack to align search button.
* Without this, the search button is slightly to the top
* of the input field and the refresh button. */
label[for="main-search-expandable"] {
margin-top: 3px;
}