-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
93 lines (79 loc) · 1.42 KB
/
popup.css
File metadata and controls
93 lines (79 loc) · 1.42 KB
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
body {
font-family: sans-serif;
margin: 0;
padding: 16px;
width: 250px;
background-color: #f9f9f9;
}
.container {
display: flex;
flex-direction: column;
gap: 10px;
}
h2 {
margin: 0;
font-size: 1.2rem;
color: #333;
text-align: center;
}
#race-info {
margin: 0;
font-weight: 500;
color: black;
text-align: center;
}
select {
width: 100%;
padding: 8px;
margin: 6px;
font-size: 0.95rem;
border: 1px solid #ccc;
border-radius: 6px;
}
.button-row {
display: flex;
justify-content: space-between;
gap: 14px;
}
button {
flex: 1;
padding: 8px;
font-size: 0.95rem;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s;
color: white;
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
button.secondary {
background-color: rgba(255, 0, 0, 0.747);
}
button.secondary:hover:not(:disabled) {
background-color: rgba(210, 11, 11, 0.747);
}
button:not(.secondary) {
background-color: #007bff;
}
button:not(.secondary):hover:not(:disabled) {
background-color: #0056b3;
}
.notification-icon {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
user-select: none;
}
.notification-icon svg {
width: 24px;
height: 24px;
fill: #9ca3af;
transition: fill 0.2s ease;
}
.notification-icon.enabled svg {
fill: #151103;
}