-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (62 loc) · 1.08 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: "Roboto", sans-serif;
background-color: #eeee;
color: white;
text-align: center;
}
h1 {
margin: 10px 0;
font-size: 40px;
}
span {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
border-radius: 50%;
background-color: #ffad22;
color: white;
font-weight: bold;
margin: 8px;
font-size: 25px;
flex: 1;
aspect-ratio: 1/1;
}
.container {
width: 95%;
min-height: 100vh;
max-width: 1440px;
margin: 0 auto;
padding: 15px;
background-color: #229fb1;
}
#resultado {
padding: 10px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
margin-bottom: 50px;
}
button {
width: 100%;
padding: 20px;
margin-top: 15px;
border: none;
background-color: #ffad22;
color: #fff;
font-size: 20px;
font-weight: bold;
border-radius: 5px;
}
select {
width: 100%;
padding: 20px;
text-align: center;
}