-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (60 loc) · 1.22 KB
/
styles.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
body {
font-family: Arial, sans-serif;
width: 220px;
padding: 15px;
background-color: #f5eded;
color: #3e3636;
}
button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
color: #f5eded;
}
button:hover {
background-color: #3e3636;
}
#redirect {
background-color: #d72323;
}
#openInTab {
background-color: #3e3636;
}
label {
font-size: 16px;
display: flex;
align-items: center;
justify-content: space-between;
}
input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
}
/* Optional: Adding some transition effects for smoothness */
button,
input[type="checkbox"] {
transition: all 0.3s ease;
}
label {
font-size: 16px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
/* Adding space below the label */
padding: 10px 0;
border-bottom: 2px solid #3e3636;
/* A subtle border for visual separation */
}
/* Adjusting space between the label text and the checkbox */
label span {
margin-right: 10px;
font-weight: bold;
}