Predefinição:Teste/styles.css
Ir para navegação
Ir para pesquisar
.infobox-boss-wide {
width: 100%;
max-width: 900px;
margin: 32px auto;
font-family: sans-serif;
color: #222;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
padding: 24px;
box-sizing: border-box;
}
.infobox-skill-tabs {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 16px;
}
.infobox-skill-tab {
cursor: pointer;
background: #f0f0f0;
color: #222;
border: none;
border-radius: 6px;
padding: 10px 18px;
font-size: 1em;
font-weight: bold;
transition: background 0.2s ease;
}
.infobox-skill-tab.active,
.infobox-skill-tab:hover {
background: #ffc107;
color: #181f2a;
}
.skill-desc {
font-size: 1em;
text-align: center;
max-width: 720px;
margin: 0 auto 24px auto;
line-height: 1.6;
padding: 12px 16px;
background: #f9f9f9;
border-radius: 6px;
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}
.infobox-skill-video-area {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.skill-video {
display: none;
width: 100%;
max-width: 720px;
}
.skill-video.active {
display: block;
}
.skill-video video {
width: 100%;
height: auto;
border-radius: 6px;
background: #000;
border: 1px solid #ccc;
box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
/* Mobile first */
@media (max-width: 768px) {
.infobox-boss-wide {
padding: 16px;
}
.infobox-skill-tab {
padding: 8px 14px;
font-size: 0.95em;
}
.skill-desc {
font-size: 0.95em;
padding: 10px 12px;
}
}