Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.54 KB | None | 0 0
  1. $color-primario: #3936da;
  2. $color-secundario: #000;
  3.  
  4. * {
  5.     margin: 0;
  6.     padding: 0;
  7. }
  8.  
  9. body {
  10.     background: #000;
  11.     font-family: 'Alatsi', sans-serif;
  12.     color: #414141;
  13.     .contenedor {
  14.         width: 50%;
  15.         border-radius: 10px;
  16.         padding: 50px;
  17.         text-align: center;
  18.         margin: 50px auto;
  19.         align-items: center;
  20.         background: #fff;
  21.         box-shadow: 0px 0px 50px rgba(82, 82, 82, 0.1);
  22.  
  23.         h1 {
  24.             color: $color-primario;
  25.             font-size: 80px;
  26.             margin-bottom: 10px;
  27.         }
  28.        
  29.         a {
  30.             color: $color-secundario;
  31.             font-size: 40px;
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement