-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (55 loc) · 1012 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
*{
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
}
body{
font: 500 1.3em Roboto, sans-serif;
background: #171738;
-webkit-font-smoothing: antialiased ;
color: #EFE9F4;
}
div.container{
width: 100%;
max-width: 1120px ;
height: 100vh;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
div#box{
width: 600px;
height: 350px;
background: rgb(216, 216, 216);
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
}
h1{
margin-bottom: 40px;
}
div#input{
margin-bottom: 60px;
}
input{
width: 55px;
margin-right: 10px;
}
#code{
width: 100%;
height: 75%;
padding: 10px;
}
#botao{
margin-top: 15px;
padding: 15px 25px;
color: white;
background: #037171;
border: none;
border-radius: 25px;
}