-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (54 loc) · 1.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
font-family: 'Roboto', sans-serif;
}
.countdown {
color: white;
background-color: #444;
border-radius: 3pt;
padding: 0.2rem 0.5rem;
}
.session-name {
margin: 0.2rem auto;
}
.time-span {
margin: 0.2rem 1rem;
color: #888;
}
.list-group-item {
align-items: center;
padding: 0.5rem;
justify-content: flex-end;
}
/* https://codepen.io/pirrera/pen/emKqBp */
div header p a {
text-decoration:none;
border-bottom: 2px solid #bbb;
box-shadow: inset 0 -4px 0 #bbb;
color: inherit;
transition: background 0.1s cubic-bezier(.33,.66,.66,1);
}
div header p a:hover {
background: #bbb;
color: #212529;
}
div header p ::selection {
background-color: #bbb;
color: #212529;
}
.day .card-header {
text-align: center;
}
@media only screen and (max-width: 550px) {
.countdown {
margin-left: 0rem;
}
.time-span {
margin: 0rem 0rem 0.6rem 0rem;
}
.list-group-item {
flex-direction: column;
}
.session-name {
margin: 0.2rem 0.5rem;
}
}