-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (43 loc) · 794 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
font-family: 'Bebas Neue', cursive;
}
.app{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #FC4245;
}
.contain{
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
}
h1{
font-size: 50px;
text-align: center;
line-height: 3rem;
color: rgba(0, 0, 0, 0.568);
margin-bottom: 30px;
}
.wapper{
display: flex;
}
.numbers{
margin-left: 10px;
}
.input{
height: 30px;
font-size: 20px;
padding-left: 5px;
margin-bottom: 10px;
}
.contador,.numbers{
color: rgba(0, 0, 0, 0.568);
}