-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
69 lines (57 loc) · 1.29 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
/* popup.css */
html
{
width: 345px; /* max: 1000px */
height: 205px; /* max: 750px */
}
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
background-color: #f2f2f2; /* Light gray background */
}
.container {
max-width: 300px;
margin: 0 auto; /* Center horizontally */
padding: 20px;
border: 1px solid #ddd; /* Light gray border */
border-radius: 5px; /* Rounded corners */
}
.title {
text-align: center;
margin-bottom: 10px;
}
.input-group {
margin-bottom: 15px;
}
.input-group label {
display: block;
margin-bottom: 5px;
}
.input-group input {
width: 100%;
padding: 5px;
border: 1px solid #ccc; /* Light gray border */
border-radius: 3px; /* Rounded corners */
}
.button-group {
text-align: center;
}
.button-group button {
margin-right: 10px; /* Space between buttons */
padding: 5px 10px;
border: none;
border-radius: 3px; /* Rounded corners */
background-color: #3498db; /* Blue */
color: white;
cursor: pointer;
}
.button-group button:hover {
background-color: #2980b9; /* Darker blue on hover */
}
.start-button {
background-color: #2ecc71; /* Green */
}
.stop-button {
background-color: #e74c3c; /* Red */
}