Ir ao conteúdo

Posts recomendados

Postado
 

Boa noite!

Estou desenvolvendo um site de agência de viagem para um trabalho na faculdade com alguns requisitos e uns desses requisitos pedidos e a tela de escolha de assento de avião depois de procurar muito na internet achei um código pronto e acabei utilizando portanto o css do código não está funcionando. Segue aí a foto de como deveria ficar e de como ficou e também o código do css. Espero muito que vocês possam me ajudar o trabalho vale 50% da nota da prova.

image.png.7e93d70c77541b9253930fcfa3665b48.pngImagem de como é pra ficar o código

image.png.0db021147a49b9f6fe83ae19939fc9fd.pngImagem de como ficou 

*,*:before,*:after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}

.plane {
  margin: 20px auto;
  max-width: 300px;
}

.cockpit {
  height: 250px; 
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 5px solid #d8d8d8;
  &:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    border-radius: 50%;
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
  }
  h1 {
    width: 60%;
    margin: 100px auto 35px auto;
  }
}

.exit {
  position: relative;
  height: 50px;
  &:before,
  &:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    top: 50%;
    transform: translate(0, -50%);
  }
  &:before {
    left: 0;
  }
  &:after {
    right: 0;
  }
}

.fuselage {
  border-right: 5px solid #d8d8d8;
  border-left: 5px solid #d8d8d8;
}

ol {
  list-style :none;
  padding: 0;
  margin: 0;
}

.row {
  
}

.seats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;  
}

.seat {
  display: flex;
  flex: 0 0 14.28571428571429%;
  padding: 5px;
  position: relative;  
  &:nth-child(3) {
    margin-right: 14.28571428571429%;
  }
  input[type=checkbox] {
    position: absolute;
    opacity: 0;
  }
  input[type=checkbox]:checked {
    + label {
      background: #bada55;      
      -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
      animation-duration: 300ms;
      animation-fill-mode: both;
    }
  }
  input[type=checkbox]:disabled {
    + label {
      background: #dddddd;
      text-indent: -9999px;
      overflow: hidden;
      &:after {
        content: "X";
        text-indent: 0;
        position: absolute;
        top: 4px;
        left: 50%;
        transform: translate(-50%, 0%);
      }
      &:hover {
        box-shadow: none;
        cursor: not-allowed;
      }
    }
  }
  label {    
    display: block;
    position: relative;    
    width: 100%;    
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    background: #F42536;
    border-radius: 5px;
    animation-duration: 300ms;
    animation-fill-mode: both;
    
    &:before {
      content: "";
      position: absolute;
      width: 75%;
      height: 75%;
      top: 1px;
      left: 50%;
      transform: translate(-50%, 0%);
      background: rgba(255,255,255,.4);
      border-radius: 3px;
    }
    &:hover {
      cursor: pointer;
      box-shadow: 0 0 0px 2px #5C6AFF;
    }
    
  }
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

 

Postado

Olá!
Tente assim:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Poltronas</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
    <header>
        POLTRONAS SYSTEM
    </header>
    <div class="app-body">
        <div class="container">
            <div class="wrapper">
                <h1>Poltronas</h1>
              <?php

                $numbers = range(1, 10);
                $letras = array_chunk(range('A', 'F'), 3);

                $display = '<section class="poltronas">';
                foreach ($letras as $side) {
                  $display .= '<aside>';
                  foreach ($numbers as $number) {
                    $display .= '<div>';
                    foreach ($side as $letra) {
                      $display .= "<input type='checkbox' id='$letra-$number'>"
                        . "<label for='$letra-$number' data-index='$letra$number'>"
                        . '</label>';
                    }
                    $display .= '</div>';
                  }
                  $display .= '</aside>';
                }
                echo $display . '</section>';

              ?>
            </div>
        </div>
    </div>
    <footer>
        <div>
            © 2018 <a href="#">Poltronas System</a>
        </div>
        <div class="ml-auto">
            <a href="#" title="Developed by Rayanne Ramos">@rayanne</a>
        </div>
    </footer>
</main>
</body>
</html>
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

body, html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    background-color: #f1f1f1;
    font-family: -apple-system, Roboto, Arial, 'Open Sans', sans-serif;
    min-height: 100vh;
}

main {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
}

main > * {
    display: flex;
    width: 100%;
}

header {
    z-index: 1100;
    background-color: #fff;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #c8ced3;
    justify-content: space-between;
    padding: 12px;
}

footer {
    flex: 0 0 50px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 1rem;
    color: #23282c;
    background: #f0f3f5;
    border-top: 1px solid #c8ced3;
}

.app-body {
    flex-grow: 1;
}

.app-body .container {
    display: flex;
    flex: 1;
    padding: 12px;
    justify-content: center;
}

.wrapper {
    margin: 0 auto;
    display: inline-block;
}

.wrapper > h1 {
    font-weight: normal;
    color: #2b5b3a;
    margin-bottom: 12px;
}

.ml-auto {
    margin-left: auto;
}

a {
    text-decoration: none;
    color: #007bff;
}

.poltronas,
.poltronas aside {
    padding: 12px;
    display: flex;
}

.poltronas {
    padding-top: 300px;
    border-radius: 50% 50% 0 0;
    border: thin solid #a8a8a8;
    background-color: #fafafa;
}

.poltronas aside {
    flex-direction: column;
    flex-grow: 1;
}

.poltronas aside + aside {
    margin-left: 66px;
}

.poltronas aside div {
    text-align: center;
    margin-bottom: 6px;
}

.poltronas input[type='checkbox']{
    display:none;
}

.poltronas label {
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    border: thin solid #aaa;
    background-color: #35582f;
    font-size: 20px;
    position: relative;
    cursor:pointer;
    transition: all .5s ease;
    opacity: 1;
}

.poltronas label:after{
    content:attr(data-index);
    height:48px;
    width:48px;
    padding: 12px 0;
    position:absolute;
    top:0;
    left:5px;
    z-index: 0;
    background-color: #d3cbba;
    border-radius:0 0 6px 6px;
}

.poltronas input[type='checkbox']:checked + label{
    opacity:.3;
    background-color: #5b0000;
}

 

Crie uma conta ou entre para comentar

Você precisa ser um usuário para fazer um comentário

Criar uma conta

Crie uma nova conta em nossa comunidade. É fácil!

Crie uma nova conta

Entrar

Já tem uma conta? Faça o login.

Entrar agora

Sobre o Clube do Hardware

No ar desde 1996, o Clube do Hardware é uma das maiores, mais antigas e mais respeitadas comunidades sobre tecnologia do Brasil. Leia mais

Direitos autorais

Não permitimos a cópia ou reprodução do conteúdo do nosso site, fórum, newsletters e redes sociais, mesmo citando-se a fonte. Leia mais

×
×
  • Criar novo...