forked from Nandika-A/EyeProtection
-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.css
75 lines (65 loc) · 1.16 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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 2rem auto;
padding: 2rem;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
margin-bottom: 1.5rem;
}
h2 {
color: #34495e;
margin-top: 0;
}
.setting-group {
margin-bottom: 2rem;
}
.input-group {
display: flex;
margin-bottom: 1rem;
}
input[type="text"] {
flex-grow: 1;
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ddd;
border-radius: 3px;
}
button {
padding: 0.5rem 1rem;
font-size: 1rem;
background-color: #3498db;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
.hint {
font-size: 0.9rem;
color: #7f8c8d;
margin-top: 0.5rem;
}
#message {
margin-top: 1rem;
padding: 0.5rem;
background-color: #2ecc71;
color: white;
border-radius: 3px;
text-align: center;
display: none;
}