-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (94 loc) · 2.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@charset "utf-8";
*{
box-sizing: border-box;
text-decoration: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
background-image:url("https://i.pinimg.com/originals/4a/cf/e6/4acfe6fa8bb7090348a82dade705a247.jpg");
background-size:100%;
background-position: center;
}
.all{
display: flex;
align-items: center;
justify-content: center;
}
h1{
text-align:center
}
.cronometro{
box-shadow: 15px 5px 14px 0px #000000;
margin-top:50px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color:#ff9aab;
width:500px;
height:300px;
border-radius:50px;
border: 2px solid #000000;
}
.display{
border:1px solid #000000;
text-align: center;
font-size:40px;
width:250px;
height:140px;
margin-bottom:30px;
color: #006400;
background-color:rgba(46, 139, 86, 0.753);
border-radius:30px;
}
#seconds{
font-size:60px;
}
.btns{
display: flex;
flex-direction: row;
gap:20px;
}
.btn {
width:70px;
height:40px;
border-radius: 10px;
border: 0;
background-color: #ff3884;
letter-spacing: 1.5px;
font-size: 14px;
transition: all .3s ease;
box-shadow: #a02335 ;
color:#ffff;
border: 1px solid black;
}
.btn:hover {
box-shadow: 0px 5px 1px 1px #c92e46 ;
}
.btn:active {
background-color: #e0296f;
transform: translateY(5px);
transition: 200ms;
}
footer{
text-align: center;
font-size:23px;
}
footer .redes{
font-size:30px;
color:#000000;
display: flex;
justify-content: center;
align-items: center;
gap:36px;
}
a{
color:#000000;
}
i{
transition:2s;
}
i:hover{
transform: rotate(12px);
transform: scale(1.5);
}