-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (79 loc) · 1.25 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
body {
font-family: "Roboto Mono", monospace;
min-height: 600px;
background-image: radial-gradient(black, rgb(80, 6, 6),black);
background-color: #000000;
background-position: center;
background-repeat: none;
background-size: 100vw;
}
.container {
display: flex;
align-items: center;
flex-direction: column ;
text-align: center;
padding: 20px;
height: 100vh;
}
.pergunta{
color: #ffffff;
font-size: 20px;
}
.tabela {
display: flex;
align-items: center;
flex-direction: column ;
}
.tabela__img {
padding: 10px;
}
.botao{
flex-direction:row ;
background-color:rgb(197, 181, 181);
font-size: 20px;
cursor: pointer
}
.botao:hover {
background-color: blue;
}
.botao:active{
transform: scale(0.98);
}
.page-title {
color: #ffffff;
margin: 0 0 5px;
}
.page-subtitle {
color: #ffffff;
margin-top: 16px;
}
.page-logo {
width: 200px;
}
.alura-logo {
width: 40px;
position: absolute;
top: 10px;
right: 10px;
}
@media (max-height: 500px) {
body {
min-height: 800px;
}
}
input {
margin: 4px;
padding: 6px;
border-radius: 5px;
}
button {
margin-top: 12px;
padding: 4px 8px;
border-radius: 10px;
background: #ffffff;
}
.resultado {
color: #ffffff;
text-align: center;
margin-top: 16px;
}