-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (54 loc) · 1.23 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
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&family=Radio+Canada&display=swap');
body {
background-image: url(/cronometro.jpeg);
background-size: cover;
background-blend-mode: darken;
background-color: rgba(0,0,0, 0.75);
font-family: 'Radio Canada', sans-serif;
color: white;
}
#titulo h1 {
display: flex;
margin: auto;
align-items: center;
text-align: center;
}
.cronometro {
height: 70px;
width: 350px;
border: 0.5px solid rgb(212, 212, 212);
border-radius: 10px;
margin: auto;
margin-top: 150px;
font-size: 50px;
align-items: center;
text-align: center;
}
.cronometro:hover {
border: 1px solid #fae600;
cursor: pointer;
}
.buttons {
display: block;
align-items: center;
text-align: center;
justify-content: space-around;
justify-items: center;
padding: 25px;
}
.buttons button {
background: rgb(82,82,82);
color: white;
height: 50px;
font-size: 20px;
border: 0.5px solid rgb(212, 212, 212);
border-radius: 10px;
padding-left: 25px;
padding-right: 25px;
margin: 5px;
cursor: pointer;
}
.buttons button:hover {
border: 1px solid #fae600;
cursor: pointer;
}