Predefinição:Teste/styles.css
Ir para navegação
Ir para pesquisar
.skillbox-container {
width: 100%;
font-family: 'Anton', sans-serif;
color: #222;
margin: 0 auto;
}
.skillbox-inner {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 0;
}
.skillbox-info-area {
width: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
margin: 32px 0 0;
}
.skillbox-wrapper {
display: flex;
flex-direction: column;
width: 100%;
max-width: 100%;
box-sizing: border-box;
margin: 0 auto;
}
/* LINHA que separa os botões da descrição */
.skillbox-tabs-separator {
width: 100%;
height: 2px;
background: #ccc;
margin: 0;
padding: 0;
}
.skillbox-tabs {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
gap: 6px;
background: #f9f9f9;
padding: 8px 0 0;
border-bottom: none; /* sem linha aqui */
margin-bottom: -2px; /* encosta na separadora */
}
.skillbox-tab {
cursor: pointer;
background: #eaf3ff;
color: #2c4e7a;
border: 2px solid #3c8dbc;
border-radius: 6px;
padding: 8px 16px;
font-size: 1em;
font-weight: bold;
transition: background 0.2s ease;
}
.skillbox-tab.active,
.skillbox-tab:hover {
background: #3c8dbc;
color: #fff;
}
.skillbox-desc {
font-size: 1em;
width: 100%;
max-width: 900px;
text-align: center;
font-weight: 500;
line-height: 1.6;
margin: 0 auto;
color: #222;
padding: 12px 0 6px;
background: none;
border: none;
}
.skillbox-video-area {
width: 100%;
max-width: 900px;
display: flex;
justify-content: center;
align-items: center;
padding: 8px 0 24px;
margin: 0 auto;
}
.skillbox-video video {
width: 100%;
max-width: 720px;
min-height: 270px;
background: #000;
border-radius: 6px;
display: block;
margin: 0 auto;
}
/* Responsivo */
@media (max-width: 768px) {
.skillbox-tab {
padding: 6px 12px;
font-size: 0.95em;
}
.skillbox-desc {
font-size: 0.95em;
padding: 10px 0 6px;
}
.skillbox-video video {
max-width: 100%;
min-height: 220px;
}
}