-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.css
More file actions
71 lines (63 loc) · 1.21 KB
/
select.css
File metadata and controls
71 lines (63 loc) · 1.21 KB
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
body, html {
height: 100%;
margin: 0;
padding: 0;
background-color: #5F96B2;
}
main {
width: 100vw;
height: 100%;
font-family: 'VT323', monospace;
background-image: url("bgselect.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
top: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.titulo {
width: 100%;
text-align: center;
margin: 0;
padding: 10px;
box-sizing: border-box;
}
.personagem {
height: 80vh;
width: 80vw;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background-color: #FFFFFF;
border: 2px solid #162C2E;
}
.foto-personagem {
width: 60%;
height: auto;
border: 2px solid #162C2E;
}
.nome-personagem {
margin: 0;
}
.bio-personagem {
width: 90%;
font-size: 1.2rem;
}
.select {
border: 2px solid #162C2E;
background-color: #FFFFFF;
font-family: 'VT323', monospace;
font-size: 1.1rem;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
font-size: 0.6rem;
font-family: 'VT323', monospace;
}