-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
popup-style.css
123 lines (108 loc) · 2.03 KB
/
popup-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
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
@font-face {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("./Inter-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("./Inter-Bold.ttf") format("truetype");
}
body {
background-color: #202124;
width: 30rem;
height: 35rem;
color: white;
font-family: "Inter", sans-serif;
}
.err {
background-color: #fe4645bb;
color: white;
display: flex;
padding: 0.4rem;
border-radius: 3px;
}
.err-text {
padding: 0 0.4rem;
}
.origin-input:focus,
.origin-input:hover {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
outline: none;
}
.origin-input {
padding: 4px 8px;
background-color: rgba(0, 0, 0, 0.2);
color: white;
border: 0;
border-radius: 2px;
font-family: "Inter", sans-serif;
display: flex;
flex: 1;
}
.origin-input-wrapper {
display: flex;
}
.origin-input-label {
color: rgba(255, 255, 255, 0.5);
margin: 8px;
display: flex;
font-size: 0.7rem;
}
.origin-list {
display: flex;
flex-direction: column;
list-style-type: none;
padding: 0;
margin: 0;
overflow: auto;
max-height: 500px;
}
.origin-add {
background-color: #31c48d;
color: rgba(0, 0, 0, 0.82);
border-radius: 2px;
padding: 4px 12px;
outline: none;
font-weight: bold;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.origin-delete {
cursor: pointer;
background-color: transparent;
color: #fe4645;
border-radius: 2px;
padding: 4px 12px;
outline: none;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.origin-delete:disabled {
color: #ffffff55;
cursor: auto;
}
.button-text {
margin-left: 2px;
}
.origin-list-entry {
display: flex;
padding: 4px 0;
align-items: center;
margin-left: 8px;
}
.origin-list-entry-origin {
flex: 1;
display: flex;
}