This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
116 lines (101 loc) · 1.72 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
html {
box-sizing: border-box;
font-size: 16px;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
margin: 0;
padding: 0;
font-weight: normal;
}
ol,
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
:root {
--primary-color: #188118;
--primary-color-light: #469a46;
--primary-color-dark: #136713;
}
.container {
width: 14rem;
height: 18rem;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.title {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.preference-list {
flex: 1;
padding: 0 0.5rem 0rem 0.5rem;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 0.5rem;
}
.preference-list .preference-input {
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
font-size: larger;
}
.preference-list .preference-input input {
margin: 0.5rem;
}
.actions {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.actions .save {
padding: 0.5rem 1rem 0.5rem 1rem;
border: 1px var(--primary-color) solid;
border-radius: 9999px;
border-radius: 9999px;
background-color: var(--primary-color);
color: white;
cursor: pointer;
}
.actions .save:hover {
background-color: var(--primary-color-dark);
color: white;
}
.actions .reset {
padding: 0.5rem 1rem 0.5rem 1rem;
border: 1px var(--primary-color) solid;
border-radius: 9999px;
background-color: white;
color: var(--primary-color);
cursor: pointer;
border-image: none;
}
.actions .reset:hover {
border: 1px var(--primary-color-dark) solid;
color: var(--primary-color-dark);
}