-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
83 lines (70 loc) · 1.15 KB
/
main.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
* {
padding: 0;
margin: 0;
border: 0;
}
.invisible {
display: none;
}
.visible {
display: block;
}
nav #menus {
display: flex;
justify-content: space-around;
list-style-type: none;
padding-left: 0;
}
#menus li {
font-size: 32px;
font-weight: 700;
flex: 1;
text-align: center;
padding: 8px;
cursor: pointer;
}
.control {
display: flex;
flex-direction: column;
gap: 6px;
align-items: center;
}
.control input, textarea {
border: solid black 1px;
}
.controlMutiple {
display: flex;
gap: 8px;
justify-content: center;
}
#registraHeroe {
display: flex;
flex-direction: column;
gap: 12px;
}
.cardHeroe {
width: 100px;
height: 150px;
display: flex;
flex-direction: column;
border: solid green 1px;
align-items: center;
padding: 8px;
}
.cardHeroe > div:nth-child(1) {
width: 75px;
height: 75px;
}
.cardHeroe > div:nth-child(1) > img {
width: 100%;
height: 100%;
}
.cardHeroe > div:nth-child(2) {
font-size: 14px;
font-weight: 700;
}
#imprime {
display: flex;
gap: 12px;
justify-content: space-around;
}