-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
132 lines (112 loc) · 2.39 KB
/
Copy pathstyle.css
File metadata and controls
132 lines (112 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* Configurações Gerais e Cores Mágicas */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #121214;
color: #e1e1e6;
padding: 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
}
section {
background-color: #202024;
padding: 30px;
border-radius: 8px;
margin-bottom: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
h1, h2, h3 {
color: #ffc107;
margin-bottom: 15px;
}
p {
line-height: 1.6;
color: #c4c4cc;
}
/* Estilo do Chapéu Seletor */
.secao-chapeu {
text-align: center;
}
#btn-selecionar {
background-color: #ffc107;
color: #121214;
border: none;
padding: 12px 24px;
font-size: 16px;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
margin-top: 20px;
transition: background 0.2s;
}
#btn-selecionar:hover {
background-color: #e0a800;
}
#resultado {
margin-top: 25px;
padding: 15px;
border: 2px dashed #ffc107;
border-radius: 4px;
background-color: #29292e;
}
#nome-casa {
font-size: 24px;
font-weight: bold;
text-transform: uppercase;
}
.escondido {
display: none;
}
/* Estilo dos Cards de Personagens */
.grid-personagens {
display: block;
}
.card-personagem {
background-color: #29292e;
padding: 20px;
border-radius: 6px;
margin-bottom: 15px;
border-left: 5px solid #888;
}
.tag-casa {
display: inline-block;
padding: 4px 8px;
font-size: 12px;
border-radius: 4px;
font-weight: bold;
margin-bottom: 10px;
color: #fff;
}
/* Cores das Casas */
.card-personagem.grifinoria { border-left-color: #740001; }
.card-personagem.grifinoria .tag-casa { background-color: #740001; }
.card-personagem.sonserina { border-left-color: #1a472a; }
.card-personagem.sonserina .tag-casa { background-color: #1a472a; }
.card-personagem.corvinal { border-left-color: #0e1a40; }
.card-personagem.corvinal .tag-casa { background-color: #0e1a40; }
/* Estilo da História dos Filmes */
.linha-tempo-filmes {
border-left: 2px solid #ffc107;
padding-left: 20px;
margin-left: 10px;
}
.filme {
position: relative;
margin-bottom: 25px;
}
.filme::before {
content: '';
position: absolute;
left: -26px;
top: 5px;
width: 10px;
height: 10px;
background-color: #ffc107;
border-radius: 50%;
}