Mudanças entre as edições de "Predefinição:Teste/styles.css"
Ir para navegação
Ir para pesquisar
| Linha 70: | Linha 70: | ||
font-size: 1em; | font-size: 1em; | ||
width: 100%; | width: 100%; | ||
max-width: 840px; | |||
text-align: center; | text-align: center; | ||
font-weight: 500; | font-weight: 500; | ||
line-height: 1. | line-height: 1.6; | ||
margin: 0; | margin: 0 auto; | ||
color: #222; | color: #222; | ||
background: | background: #f5f7fa; | ||
padding: 4px 0 0 0; | padding: 12px 20px; | ||
border-radius: 6px; | |||
box-shadow: inset 0 0 4px rgba(0,0,0,0.03); | |||
} | } | ||
Edição das 01h07min de 24 de maio de 2025
.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: sans-serif;
color: #222;
overflow: hidden;
margin-bottom: 0;
}
.skillbox-inner {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0;
}
.skillbox-info-area {
width: 100%;
max-width: 900px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 16px 0 8px 0;
gap: 8px;
padding: 0;
}
.skillbox-tabs {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
width: 100%;
margin: 0;
padding: 0;
}
.skillbox-tab {
background: #f0f8ff;
color: #205081;
border: 2px solid #3c8dbc;
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.8;
}
.skillbox-tab.active,
.skillbox-tab:hover {
opacity: 1;
background: #3c8dbc;
color: #fff;
border-color: #3c8dbc;
}
.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;
background: #f5f7fa;
padding: 12px 20px;
border-radius: 6px;
box-shadow: inset 0 0 4px rgba(0,0,0,0.03);
}
.skillbox-video-area {
width: 100%;
max-width: 900px;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border-radius: 8px;
padding: 0;
margin: 0 auto;
}
.skillbox-video video {
width: 100%;
height: auto;
max-width: 700px;
min-height: 270px;
border-radius: 8px;
background: #000;
display: block;
margin: 0 auto;
}
.skillbox-wrapper {
background: none;
color: #222;
border-radius: 12px;
box-shadow: none;
width: 100%;
max-width: 700px;
box-sizing: border-box;
padding: 24px;
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
margin: 0 auto;
}
@media (max-width: 900px) {
.skillbox-info-area,
.skillbox-video-area {
max-width: 100vw;
width: 100%;
padding: 0 4vw;
margin: 12px 0;
gap: 6px;
}
.skillbox-video video {
min-width: 100%;
min-height: 240px;
}
.skillbox-tab {
padding: 6px 12px;
font-size: 0.9em;
}
.skillbox-desc {
font-size: 0.95em;
padding: 2px 0;
}
}