-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
162 lines (139 loc) · 3.01 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
font-family: Roboto, sans-serif;
margin: 0;
padding: 0;
background: radial-gradient(circle, #1a1f28 0%, #2e3a4d 100%);
color: #d4e7fc;
display: flex;
align-items: center;
justify-content: center;
}
.container {
padding: 20px;
width: 100%;
max-width: 350px;
border-radius: 4px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
background-color: #1E232B;
}
/* Media query for larger devices */
@media (min-width: 768px) {
.container {
width: 350px;
}
}
h1 {
font-size: 20px;
font-weight: bold;
text-align: center;
color: #86a9de;
margin-bottom: 18px;
}
.file-input-label,
#file-selected-label,
input[type='file'] {
font-family: Roboto, sans-serif;
font-size: 14px;
display: block;
margin-bottom: 10px;
font-weight: 500;
color: #afc5f7;
}
input[type='file'] {
margin-bottom: 20px;
border: 1px solid #86a9de;
border-radius: 8px;
background-color: #1E232B;
color: #afc5f7;
cursor: pointer;
}
button {
display: block;
width: 100%;
padding: 12px;
font-size: 16px;
font-weight: 600;
color: #171e26;
background-image: radial-gradient(circle, #4a8fd4 0%, #2164a3 100%);
border: none;
border-radius: 10px;
background-repeat: no-repeat;
background-position: center;
margin-top: 8px;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}
button:hover {
background-image: radial-gradient(circle, #2164a3 0%, #4a8fd4 100%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
button:active {
background-color: #616c73;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.file-section {
display: flex;
align-items: center;
margin-bottom: 20px;
}
input[type='file']:hover {
background-image: radial-gradient(circle, #1E232B 0%, #171A21 100%);
}
#instruction {
margin-bottom: 12px;
font-size: 14px;
padding-bottom: 5px;
font-weight: 500;
color: #c8dcf6;
}
label {
font-size: 14px;
display: block;
font-weight: 400;
color: #E5E6F7;
}
ul {
list-style-type: none;
padding: 0;
}
.blocklist-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.external-link {
margin-left: 8px;
text-decoration: none;
color: #9AB1E3;
transition: color 0.2s ease;
}
.external-link:hover {
color: #7cb1f5;
}
input[type='file'] {
background-image: radial-gradient(circle, #171A21 0%, #1E232B 100%);
}
input[type='file']:hover {
background-image: radial-gradient(circle, #1E232B 0%, #171A21 100%);
}
body {
/* ... */
/* Updated background gradient with more vibrant colors and angle */
background: radial-gradient(circle, #1a1f28 0%, #2e3a4d 100%);
/* ... */
}
button {
/* ... */
/* Updated button gradient colors with more vibrant colors */
background-image: radial-gradient(circle, #4a8fd4 0%, #2164a3 100%);
/* ... */
}
button:hover {
/* Updated button hover gradient colors with more vibrant colors */
background-image: radial-gradient(circle, #2164a3 0%, #4a8fd4 100%);
}
/* Add a hover effect for external-link */
.external-link:hover {
color: #7cb1f5;
}