-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (84 loc) · 1.66 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
.body{
color: aliceblue;
font-family: cursive;
}
.stopwatch{
width: 90%;
max-width: 600px;
/* background-image: linear-gradient(black,rgba(0,0,0,0.7));
background-size: cover; */
background: linear-gradient(to right, #ffcc00, #ff66b2, #4d94ff, #4dff4d);
background-size: 400% 100%;
animation: gradientAnimation 10s linear infinite;
text-align: center;
margin-left: auto;
margin-right: auto;
background-position: center;
color: aliceblue;
margin-top: auto;
margin-bottom: auto;
border-radius: 20px;
box-shadow: 0 10 10px grey;
font-family: cursive;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.timer h1{
padding-top: 25px;
margin-top: 125px;
font-size: 70px;
font-weight: bold;
font-family: cursive;
}
.buttons{
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 10px;
padding-bottom: 25px;
}
.buttons img{
width: 50px;
margin: 0 20px;
cursor: pointer;
}
.lap h1{
font: size 10px;;
cursor: pointer;
text-align: left;
margin-left: 50px;
padding-bottom: 0;
margin-bottom: 5px;
font-family: cursive;
}
.lap h3{
text-align: left;
margin-left: 50px;
font-family: cursive;
margin-bottom: 20px;
}
.lap h1:hover{
color: orangered;
}
.instructions p{
text-align: left;
display: none;
margin-left: 10px;
margin-bottom: 20px;
}
.instructions h5{
cursor: pointer;
text-align: center;
}
.instructions h5:hover{
color: orangered;
}