-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (81 loc) · 1.65 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (81 loc) · 1.65 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
94
*{
padding: 0;
margin: 0;
}
body{
text-align: center;
}
.main{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: rgb(225, 183, 122);
margin: 0;
}
.stopwatch {
text-align: center;
background-color: #211e1e;
padding: 30px;
border-radius: 5px;
box-shadow: 18px 20px 6px rgba(0, 0, 0, 0.5);
color: #c9d953;
max-width: 300px;
width: 100%;
}
#display {
font-size: 2.5em;
margin-bottom: 20px;
color: #ffffff;
letter-spacing: 2px;
}
.controls {
margin-bottom: 20px;
}
button {
padding: 12px 24px;
font-size: 1em;
margin: 5px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
background-color: #70a5f4;
color: #282c34;
}
button:hover {
background-color: #2174f1;
transform: scale(1.05);
}
button:active {
transform: scale(0.95);
}
#laps {
list-style: none;
padding: 0;
margin-top: 10px;
max-height: 150px;
overflow-y: auto;
}
#laps li {
background-color: #333;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
color: #ffffff;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
}
#laps li:hover {
transform: translateX(5px);
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #333;
}
::-webkit-scrollbar-thumb {
background-color: #61dafb;
border-radius: 10px;
}