-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.css
81 lines (67 loc) · 1.05 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
h1 {
text-align: center;
font-size: 40px;
}
.wrapper {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
text-align: center;
}
#boxOne {
height: 175px;
}
#boxTwo {
height: 200px;
}
#adding {
flex-basis: 300px;
}
#removing {
flex-basis: 300px;
}
h3 {
font-size: 20px;
}
#blocking {
flex-basis: 300px;
}
#buttons {
display: block;
flex-basis: 150px;
}
#clear {
border: 1px solid black;
margin-bottom: 2px;
}
#refresh {border: 1px solid black}
#sites {
text-align: left;
display: block;
flex-basis: 200px;
height: 70px;
}
#list {
text-align: left;
font-size: 15px;
}
button {
background-color: darkgreen;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: 1px solid black
}
input {
padding: 10px 20px;
box-sizing: border-box;
}
button:hover {
background-color: lightblue;
color: black;
}