-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (77 loc) · 1.32 KB
/
style.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
background-color: #f4f4f4;
font-family: 'Nunito', sans-serif;
margin: 0;
}
#time-watch {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#title-application {
font-size: 40px;
margin-top: 50px;
text-align: center;
}
#timer {
font-size: 2em;
}
#buttons {
margin-top: 50px;
display: flex;
gap: 10px;
}
button {
padding: 10px;
font-size: 1em;
cursor: pointer;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
}
button:hover {
opacity: .7;
}
button:disabled {
background-color: #bdc3c7;
cursor: not-allowed;
}
ul {
margin-top: 20px;
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 5px;
}
.clickable {
cursor: pointer;
}
.clickable:hover {
text-decoration: none;
}
.notification {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #3498db;
color: #fff;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
z-index: 999;
}
#frame {
width: 220px;
height: 220px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
border: 3px solid #3498db;
}