Predefinição:Teste/styles.css
Ir para navegação
Ir para pesquisar
.skillbox-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
background: none;
border: none;
border-radius: 12px;
box-shadow: none;
font-family: 'Inter', sans-serif;
color: #222;
overflow: hidden;
max-width: 900px;
margin: 0 auto;
gap: 12px;
}
.skillbox-tabs {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
width: 100%;
}
.skillbox-tab {
cursor: pointer;
background: #fff;
color: #222;
border: 2px solid #ffc107;
border-radius: 8px;
padding: 8px 16px;
font-size: 1em;
font-weight: bold;
transition: 0.2s;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
opacity: 0.7;
}
.skillbox-tab.active,
.skillbox-tab:hover {
opacity: 1;
background: #ffc107;
color: #181f2a;
border-color: #ffc107;
}
.skillbox-content {
position: relative;
width: 100%;
min-height: 300px;
max-width: 100%;
}
.skillbox-panel {
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
text-align: center;
width: 100%;
position: absolute;
top: 0;
left: 0;
padding: 8px;
box-sizing: border-box;
}
.skillbox-panel.active {
display: flex;
}
.skillbox-desc {
font-size: 1em;
font-weight: 500;
line-height: 1.5;
margin: 0;
color: #222;
background: none;
padding: 4px 0;
width: 100%;
max-width: 700px;
}
.skillbox-video {
width: 100%;
max-width: 700px;
border-radius: 8px;
background: #000 center;
}
/* RESPONSIVO */
@media (max-width: 900px) {
.skillbox-container {
padding: 0 4vw;
}
.skillbox-desc {
font-size: 0.95em;
padding: 2px 0;
}
.skillbox-tab {
padding: 6px 12px;
font-size: 0.9em;
}
.skillbox-video {
max-width: 100%;
}
}