-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
124 lines (115 loc) · 1.95 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* Note: Styling copied from https://github.com/statsig-io/statsigstatus */
* {
box-sizing: border-box;
}
html {
height: 100%;
display: flex;
flex-direction: column;
width: 500px;
}
body {
background-color: #f5f6f8;
color: #3b3b3b;
font-size: 14px;
font-weight: 300;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu',
sans-serif;
justify-content: center;
line-height: 22px;
margin: 0;
padding: 0;
text-align: center;
transition: opacity 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6,
footer {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu',
sans-serif;
line-height: 125%;
}
h1 {
color: #3b3b3b;
font-size: 32px;
font-weight: bold;
margin: 0px;
}
h2 {
color: #3b3b3b;
font-size: 28px;
font-weight: bold;
margin: 16px 0 8px 0;
}
h3 {
color: #3b3b3b;
font-size: 24px;
font-weight: 700;
margin: 8px 0 4px 0;
}
h4 {
color: #3b3b3b;
font-size: 18px;
font-weight: 600;
margin-top: 5px;
margin-bottom: 4px;
}
h5 {
color: #3b3b3b;
font-size: 16px;
font-weight: bold;
margin-top: 5px;
margin-bottom: 4px;
}
h6 {
color: #3b3b3b;
font-size: 16px;
font-weight: bold;
margin-top: 5px;
margin-bottom: 4px;
}
a {
color: #194b7d;
text-decoration: none;
}
footer {
color: #9c9c9c;
margin: 40px;
}
footer a {
font-weight: bold;
}
.container {
background-color: #fff;
box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.06);
border-radius: 5px;
max-width: 900px;
width: 100%;
padding: 30px 20px;
margin: 0 auto 40px auto;
}
.headline {
display: flex;
align-items: center;
justify-content: center;
}
.headline span {
background-color: #f5f6f8;
border-radius: 5px;
padding: 6px;
margin-left: 12px;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
}
.filterContainer {
border: 1px solid #ededed;
border-radius: 5px;
padding-top: 20px;
text-align: left;
padding: 24px;
}