Untitled

 avatar
unknown
plain_text
a month ago
1.7 kB
5
Indexable
body {
  background-color: #e0e8ff;
  margin: 0;
  height: 150vh;
  display: grid;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.card {
  width: 300px;
  height: 475px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 21px 28px 24px -4px rgba(0,0,0,0.1);
}

.banner {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.texto {
  text-align: center;
}

.plano {
  background-color: #f8f9fe;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 55px;
  margin-top: 12px;
}

.plano-valor h5, p {
  margin: 0 0 5px 0;
}

.plano-valor h5 {
  margin-top: 10px;
}

.icone-musica img {
  width: 40px;
}

h1, h5, p {
  color: #1c273a;
}

.botoes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.pgto {
  background-color: #382ae1;
  color: white;
  height: 30px;
  border: 0;
  border-radius: 7px;
  box-shadow: 0px 15px 35px 0px hsl(245, 75%, 90%);
  margin-bottom: 12px;
  cursor: pointer;
}

.cancelar {
  border: 0;
  background-color: transparent;
}

.conteudo {
  padding: 0 20px 20px 20px;
}

header, footer {
  width: 100%;
  height: 100px;
  background-color: coral;
  display: flex;
  justify-content: center;
  align-items: center;
}

header h1, footer h1 {
  margin: 0;
}

.cards {
  width: 85vw;
  height: 120vh;
  background-color: #c7cfe1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, auto));
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;
}

aside {
  background-color: white;
}
Editor is loading...
Leave a Comment