-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (72 loc) · 1.4 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100%;
background-image: url(fundo.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
background-color: #111;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.text{
display: flex;
position: absolute;
text-align: center;
justify-content: center;
top: 30px;
color: blue;
font-size: 40px;
}
.container{
width: 600px;
display: flex;
align-items: center;
justify-content: center;
}
input{
height: 80px;
font-size: 50px;
width: 100%;
text-align: center;
margin: 0 4px;
}
input:disabled{
background-color: white;
}
button{
width: 80px;
height: 100%;
background-color: blue;
color: white;
font-size: 50px;
border: 0;
cursor: pointer;
transition: background .25s ease-in-out;
border-radius: 50px;
}
#rodape {
background-color: black;
width: 100%;
position: absolute;
text-align: center;
bottom: 0;
font-size: 20px;
color: white;
}
.link{
text-align: center;
color: white;
}
.link:hover{
color: rgb(59, 148, 221);
}