-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (90 loc) · 1.88 KB
/
style.css
File metadata and controls
91 lines (90 loc) · 1.88 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
background: url(./technics-clock-timepiece-laser-wallpaper-preview.jpg);
background-size: cover;
background: linear-gradient(to top left, black, aqua , aquamarine) center fixed;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
display: flex;
}
.main {
color: black;
font-size: 3rem;
margin-bottom: 10px;
font-family: "Times New Roman", Times, serif;
/* text-shadow: 10px 0 10px gray; */
background-image: url(./gradient-indigo-background-illustration-free-photo.jpg);
background-clip: text;
color: transparent;
background-color: white;
}
.stopWatch {
text-align: center;
background: #333;
background: #0e0e0e;
padding: 30px;
border-radius: 15px;
transition: box-shadow 0.7s;
}
.stopWatch:hover {
/* border: 5px double; */
box-shadow: 0 0 20px #000;
}
.head1 {
font-size: 2.5rem;
color: aquamarine;
font-family: serif;
margin-bottom: 20px;
}
#display {
font-size: 3rem;
margin-bottom: 30px;
letter-spacing: 2px;
}
button {
padding: 10px 20px;
margin: 5px 10px;
font-size: 1.2rem;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s;
}
.startBtn {
background: green;
color: white;
transition: box-shadow 0.3s;
transition: border 0.3s;
}
.startBtn:hover {
box-shadow: 0 0 10px green;
border: 3px double;
}
.stopBtn {
background: red;
color: white;
transition: box-shadow 0.3s;
transition: border 0.3s;
}
.stopBtn:hover {
box-shadow: 0 0 10px red;
border: 3px double;
}
.resetBtn {
background: gray;
color: white;
transition: box-shadow 0.3s;
transition: border 0.3s;
}
.resetBtn:hover {
box-shadow: 0 0 10px gray;
border: 3px double;
}