Predefinição:Teste/styles.css

De Wiki Gla
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: 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%;
  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;
  }
}