-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 1.09 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
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital@1&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
body{
background: #edeaff;
font-family: 'Courier Prime', monospace;
font-family: 'Playfair Display', serif;
}
.cronometro{
width: 90%;
max-width: 600px;
background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),url(images/background.png);
background-size: cover;
background-position: center;
text-align: center;
padding: 40px 0;
color: #fff;
margin: 200px auto 0;
box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.cronometro h1{
margin-bottom: 60px;
margin-top: 50px;
font-size: 54px;
font-style: italic;
font-weight: 300;
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}
.buttons img{
width: 50px;
margin: 0 20px;
cursor: pointer;
}
.buttons img:nth-child(2){
width: 80px;
}