Mudanças entre as edições de "Predefinição:Teste/styles.css"
Ir para navegação
Ir para pesquisar
| Linha 1: | Linha 1: | ||
.skillbox-container { | .skillbox-container { | ||
width: 100%; | width: 100%; | ||
font-family: | font-family: sans-serif; | ||
color: #222; | color: #222; | ||
margin: 0 auto; | margin: 0 auto; | ||
| Linha 16: | Linha 16: | ||
.skillbox-info-area { | .skillbox-info-area { | ||
width: 100%; | width: 100%; | ||
max-width: | max-width: 900px; | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
align-items: center; | align-items: center; | ||
margin: 24px 0 0; | |||
padding: 0; | padding: 0; | ||
} | } | ||
.skillbox-wrapper { | .skillbox-wrapper { | ||
width: 100%; | |||
max-width: 900px; | |||
box-sizing: border-box; | |||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
align-items: center; | |||
margin: 0 auto; | margin: 0 auto; | ||
} | } | ||
/* | /* Linha separadora */ | ||
.skillbox-tabs-separator { | .skillbox-tabs-separator { | ||
width: 100%; | width: 100%; | ||
| Linha 48: | Linha 49: | ||
width: 100%; | width: 100%; | ||
gap: 6px; | gap: 6px; | ||
padding: 0; | |||
padding: | |||
margin-bottom: -2px; /* encosta na separadora */ | margin-bottom: -2px; /* encosta na separadora */ | ||
} | } | ||
| Linha 58: | Linha 57: | ||
background: #eaf3ff; | background: #eaf3ff; | ||
color: #2c4e7a; | color: #2c4e7a; | ||
border: | border: 1px solid #3c8dbc; | ||
border-radius: 6px; | border-bottom: none; | ||
border-radius: 6px 6px 0 0; | |||
padding: 8px 16px; | padding: 8px 16px; | ||
font-size: 1em; | font-size: 1em; | ||
| Linha 70: | Linha 70: | ||
background: #3c8dbc; | background: #3c8dbc; | ||
color: #fff; | color: #fff; | ||
border-color: #3c8dbc; | |||
border-bottom: none; | |||
} | } | ||
| Linha 75: | Linha 77: | ||
font-size: 1em; | font-size: 1em; | ||
width: 100%; | width: 100%; | ||
max-width: | max-width: 840px; | ||
text-align: center; | text-align: center; | ||
font-weight: 500; | font-weight: 500; | ||
| Linha 106: | Linha 108: | ||
} | } | ||
/* | /* Mobile */ | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.skillbox-tab { | .skillbox-tab { | ||
Edição das 01h17min de 24 de maio de 2025
.skillbox-container {
width: 100%;
font-family: 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: 900px;
display: flex;
flex-direction: column;
align-items: center;
margin: 24px 0 0;
padding: 0;
}
.skillbox-wrapper {
width: 100%;
max-width: 900px;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
margin: 0 auto;
}
/* Linha separadora */
.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;
padding: 0;
margin-bottom: -2px; /* encosta na separadora */
}
.skillbox-tab {
cursor: pointer;
background: #eaf3ff;
color: #2c4e7a;
border: 1px solid #3c8dbc;
border-bottom: none;
border-radius: 6px 6px 0 0;
padding: 8px 16px;
font-size: 1em;
font-weight: bold;
transition: background 0.2s ease;
}
.skillbox-tab.active,
.skillbox-tab:hover {
background: #3c8dbc;
color: #fff;
border-color: #3c8dbc;
border-bottom: none;
}
.skillbox-desc {
font-size: 1em;
width: 100%;
max-width: 840px;
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;
}
/* Mobile */
@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;
}
}