Mudanças entre as edições de "Predefinição:Teste/styles.css"
Ir para navegação
Ir para pesquisar
Etiqueta: Reversão manual |
|||
| Linha 1: | Linha 1: | ||
. | .skillbox-container { | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
| Linha 12: | Linha 12: | ||
color: #222; | color: #222; | ||
overflow: hidden; | overflow: hidden; | ||
margin-bottom: 0; | |||
} | } | ||
. | .skillbox-inner { | ||
width: 100%; | width: 100%; | ||
display: flex; | display: flex; | ||
| Linha 20: | Linha 21: | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
padding: 0; | |||
} | } | ||
. | .skillbox-info-area { | ||
width: 100%; | width: 100%; | ||
max-width: 900px; | max-width: 900px; | ||
| Linha 29: | Linha 31: | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
margin | margin: 16px 0 8px 0; | ||
gap: 8px; | gap: 8px; | ||
padding: 0; | |||
} | } | ||
. | .skillbox-tabs { | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
| Linha 39: | Linha 42: | ||
justify-content: center; | justify-content: center; | ||
width: 100%; | width: 100%; | ||
margin: 0; | |||
padding: 0; | |||
} | } | ||
. | .skillbox-tab { | ||
cursor: pointer; | cursor: pointer; | ||
background: #fff; | background: #fff; | ||
| Linha 55: | Linha 60: | ||
} | } | ||
. | .skillbox-tab.active, | ||
. | .skillbox-tab:hover { | ||
opacity: 1; | opacity: 1; | ||
background: #ffc107; | background: #ffc107; | ||
| Linha 63: | Linha 68: | ||
} | } | ||
. | .skillbox-desc { | ||
font-size: 1em; | font-size: 1em; | ||
width: 100%; | width: 100%; | ||
| Linha 72: | Linha 77: | ||
color: #222; | color: #222; | ||
background: none; | background: none; | ||
padding: 4px 0; | padding: 4px 0 0 0; | ||
} | } | ||
. | .skillbox-video-area { | ||
width: 100%; | width: 100%; | ||
max-width: 900px; | max-width: 900px; | ||
| Linha 83: | Linha 88: | ||
background: transparent; | background: transparent; | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: | padding: 0; | ||
margin: 0 auto; | 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) { | @media (max-width: 900px) { | ||
. | .skillbox-info-area, | ||
. | .skillbox-video-area { | ||
max-width: 100vw; | max-width: 100vw; | ||
width: 100%; | width: 100%; | ||
| Linha 124: | Linha 129: | ||
} | } | ||
. | .skillbox-video video { | ||
min-width: 100%; | min-width: 100%; | ||
min-height: 240px; | min-height: 240px; | ||
} | } | ||
. | .skillbox-tab { | ||
padding: 6px 12px; | padding: 6px 12px; | ||
font-size: 0.9em; | font-size: 0.9em; | ||
} | } | ||
. | .skillbox-desc { | ||
font-size: 0.95em; | font-size: 0.95em; | ||
padding: 2px 0; | padding: 2px 0; | ||
} | } | ||
} | } | ||
Edição das 22h53min de 23 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 {
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-desc {
font-size: 1em;
width: 100%;
text-align: center;
font-weight: 500;
line-height: 1.5;
margin: 0;
color: #222;
background: none;
padding: 4px 0 0 0;
}
.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;
}
}