-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.css
105 lines (91 loc) · 1.77 KB
/
options.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
body {
margin: 0;
padding: 0;
background-color: rgb(213, 221, 224);
}
section {
margin: 10% 20%;
height: 50vh;
overflow-y: auto;
background-color: white;
}
.blockedURL {
position: absolute;
left: 50%;
transform: translateX(-50%);
flex-wrap: wrap;
width: 250px;
}
.container {
position: absolute;
left: 50%;
transform: translateX(-50%);
flex-wrap: wrap;
}
.container ul {
list-style-type: none;
padding: 10px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.container li {
padding: 2px 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
display: flex;
align-items: center;
column-count: 5;
}
.container li a {
color: black;
display: block;
padding: 7%;
}
.listURL li:hover {
background-color: rgb(203, 210, 220);
}
#blockedURL {
display: flex;
align-items: center;
}
h1 {
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #333;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
padding: 2%;
}
h2 {
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #333;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
}
p {
font-size: 5px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #333;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
}
.delete {
width: 100%;
padding-bottom: 0px;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
bottom: 10px;
text-align: center;
margin-bottom: 0%;
}