-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (50 loc) · 1.12 KB
/
style.css
File metadata and controls
52 lines (50 loc) · 1.12 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
*{
transition: all 0.3s;
}
body{
background-color: rgb(26, 26, 26);
}
.container{
margin-top: 240px;
margin-left: 25%;
margin-right: 25%;
background-color: rgb(49, 49, 49);
border-radius: 50px;
justify-content: center;
text-align: center;
flex-direction: column;
}
.tiempo{
color: white;
}
.conteo{
font-size: 300%;
font-family: 'Calibri';
}
button{
width: 15%;
height: 35px;
border-radius: 60px;
color: white;
font-size: 20px;
margin-left: 2.5%;
margin-right: 2.5%;
margin-bottom: 2.5%;
border: none;
}
.start{
background: linear-gradient(to bottom, rgba(120, 0, 240, 0.829), rgba(201, 154, 248, 0.6));
display: inline-block;
}
.pause{
background: linear-gradient(to bottom, rgba(255, 14, 26, 0.863), rgba(245, 69, 69, 0.6));
display: none;
}
.delete{
background: linear-gradient(to bottom,rgba(34, 34, 34, 0.753), rgba(82, 82, 82, 0.6));
display: none;
}
.resume{
background: linear-gradient(to bottom, rgba(128, 0, 255, 0.829), rgba(201, 154, 248, 0.6));
display: none;
}