-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (82 loc) · 1.82 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
body {
font-family: "Roboto Mono", monospace;
min-height: 600px;
background-image: url("https://www.alura.com.br/assets/img/imersoes/dev-2021/dia-03-mentalista.png");
background-color: #000000;
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
}
.container {
text-align: center;
padding: 20px;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.page-title {
color: #ffffff;
margin: 0 0 5px;
font-size: 2.5rem;
font-weight: bold;
}
.page-subtitle {
color: #ffffff;
margin-top: 16px;
font-size: 1.5rem;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.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;
border: 1px solid #ccc;
width: 10%;
}
button {
margin-top: 12px;
padding: 4px 8px;
border-radius: 10px;
background: #ffffff;
border: 1px solid #ccc;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
}
button:hover{
background: rgb(218, 40, 40);
transform: scale(1.1);
}
.resultado {
color: #ffffff;
text-align: center;
margin-top: 16px;
font-size: 1.5rem;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
footer, span{
margin-top: 20px;
text-align: center;
font-size: 1.2rem;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
}