-
Notifications
You must be signed in to change notification settings - Fork 116
/
popup.css
93 lines (79 loc) · 1.33 KB
/
popup.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body, h2 {
font-family: Ubuntu, sans-serif;
}
body {
margin: 10px 15px 5px 15px;
background-color: black;
}
#status, #timeRem {
margin: 10px auto;
text-align: center;
font-size: 20px;
white-space: nowrap;
}
.header {
display: flex;
align-items: center;
padding-bottom: 15px;
border-bottom: 2px solid darkred;
white-space: nowrap;
}
.header img {
height: 64px;
margin: 0 20px 0 0;
}
ul {
font-size: 16px;
font-weight: bold;
list-style: none;
padding: 0;
}
li {
font-size: 14px;
font-weight: normal;
white-space: nowrap;
margin: 0 0 0 5px;
}
.extra {
font-family: sans-serif;
white-space: nowrap;
font-style: italic;
margin: 3px;
}
.links {
display: flex;
align-items: center;
justify-content: space-between;
font-family: sans-serif;
}
.links p {
color: blue;
text-decoration: underline;
cursor: pointer;
}
.buttonContainer {
margin-top: 10px;
display: flex;
justify-content: flex-start;
}
.button {
display: none;
text-align: center;
padding: 10px;
border: 2px solid darkred;
font-size: 16px;
font-weight: bold;
cursor: pointer;
background-color: black;
border-radius: 5px;
}
.button:hover {
color: red;
background-color: darkred;
}
.button:last-child {
margin-left: 10px;
}
header, h1, p, ul, li, .button, #status, #timeRem {
color: #aaa !important;
}