-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·74 lines (62 loc) · 1 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
67
68
69
70
71
72
73
.event {
border: 1px solid #2196F3;
border-radius: 5px;
margin: 5px;
color: #454545;
}
.row {
width: 100%;
}
h3::after{
content: " : ";
}
h3 {
margin: 6px;
}
.row > * {
display: inline-block;
}
li.row.name {
color: #E91E63;
}
.event .header {
border-bottom: 1px solid #2196F3;
}
.event .header .count {
border-right: 1px solid #2196F3;
padding: 10px 20px;
text-align: center;
background: #2196F3;
color: white;
}
.count, .name {
display: inline-block;
height: 100%;
padding-left: 15px;
color: #2196F3;
font-weight: bold;
}
.loading {
text-align: center;
height: 50px;
line-height: 50px;
}
header {
width: 300px;
margin: 8px;
font-size: 20px;
}
button#refreshBtn {
position: absolute;
top: 5px;
right: 5px;
background-color: #3F51B5;
border: none;
padding: 7px;
color: #f7f7f7;
border-radius: 5px;
}
button#refreshBtn:hover {
background-color: #5667c3;
cursor: pointer;
}