-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (56 loc) · 1.02 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
/* style.css */
body {
background-color: #f0f0f5;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
#pomodoro {
text-align: center;
margin-top: 60px;
background: #f4f4f4;
padding: 30px;
border-radius: 12px;
width: 280px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
#timeInput {
width: 60px;
font-size: 18px;
padding: 4px;
margin-left: 8px;
border-radius: 6px;
border: 1px solid #ccc;
text-align: center;
}
.note {
font-size: 12px;
color: #666;
margin-top: 4px;
}
#timer {
font-size: 48px;
margin: 20px 0;
font-weight: bold;
color: #e63946;
}
.buttons button {
font-size: 16px;
padding: 8px 14px;
margin: 5px;
cursor: pointer;
border: none;
border-radius: 6px;
background-color: #457b9d;
color: white;
transition: background-color 0.3s ease;
}
.buttons button:hover:not(:disabled) {
background-color: #1d3557;
}
.buttons button:disabled {
background-color: #a8a8a8;
cursor: not-allowed;
}