-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.css
88 lines (78 loc) · 1.21 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
:root {
--color-alert-red: #f44336;
--color-alert-green: #4CAF50;
--color-alert-blue: #2196F3;
--color-alert-yellow: #ff9800;
}
body {
margin: 0px;
width: 580px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}
main {
display: flex;
}
.sidebar {
min-width: 175px;
background-color: darkgray;
}
.tabs {
list-style: none;
padding: 10px;
}
.tab {
padding: 8px;
color: white;
border-radius: 3px;
cursor: pointer;
}
.tab--active {
background-color: grey;
}
.tab-contents {
width: 100%;
}
.tab-content {
display: none;
margin: 0px 15px;
text-align: center;
}
.tab-content--active {
display: block;
}
.tab-content img {
margin: 10px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
/* .toggle {
text-align: center;
line-height: 40px ;
}
.toggle input[type="checkbox"] {
width: 80px;
height: 40px;
} */
.alert {
display: block;
box-sizing: border-box;
width: 100%;
margin: 15px 0px;
padding: 10px;
color: white;
border-radius: 10px;
}
.alert--red {
background: var(--color-alert-red);
}
.alert--green {
background: var(--color-alert-green);
}
.alert--blue {
background: var(--color-alert-blue);
}
.alert--yellow {
background: var(--color-alert-yellow);
}