-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelya.css
93 lines (81 loc) · 1.61 KB
/
elya.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, html {
height: 100%;
margin: 0;
padding: 0;
background-color: #5F96B2;
}
main {
width: 100vw;
height: 100%;
font-family: 'VT323', monospace;
background-image: url("bginicial1.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
top: 0;
display: flex;
justify-content: center;
align-items: center;
}
.personagem {
width: 80vw;
height: 65vh;
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr 1fr 1fr;
background-color: #FFFFFF;
border: 2px solid #162C2E;
}
.foto-personagem {
grid-row-start: 1;
grid-row-end: end;
align-self: center;
justify-self: center;
border: 2px solid #162C2E;
}
.texto-fase {
font-size: 1.3rem;
padding-right: 20px;
line-height: 1.3;
margin: 0;
}
.select {
align-self: center;
justify-self: center;
width: 30%;
height: 60%;
border: 2px solid #162C2E;
background-color: #FFFFFF;
font-family: 'VT323', monospace;
font-size: 1.3rem;
}
.select:hover {
cursor: pointer;
}
a {
text-decoration: none;
color: #CDC6CC;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
font-size: 0.6rem;
font-family: 'VT323', monospace;
}
@media (max-width: 400px), (orientation: portrait) {
main {
height: 100vh;
}
.personagem {
height: 87vh;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
overflow-y: scroll;
padding: 20px;
gap: 5px;
}
}