Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 2.04 KB | None | 0 0
  1. ```scss
  2. footer{
  3.         display: flex;
  4.         flex-direction: row;
  5.  
  6.         height: 200px;
  7.         width: 100%;
  8.         background-color: $blue;
  9.  
  10.         .container{
  11.             display: flex;
  12.             justify-content: space-around;
  13.             margin: 0 auto;
  14.  
  15.             div{
  16.                 display: flex;
  17.                 flex-direction: row;
  18.                 justify-content: center;
  19.                 align-items: center;
  20.    
  21.                 img{
  22.                     height: 100%;
  23.                     width: auto;
  24.                     margin-left: -200px;
  25.                 }
  26.        
  27.                 .footer-nav{
  28.                     display: flex;
  29.                     flex-direction: column;
  30.                     justify-content: center;
  31.                     align-items: center left;
  32.                     a{
  33.                         margin: 5px;
  34.                         text-decoration: none;
  35.                         color: $white;
  36.                         font-family: $raleway;
  37.                         font-size: 18px;
  38.    
  39.                         transition-duration: 0.3s;
  40.                     }
  41.    
  42.                     a:hover{
  43.                         color: $yellow;
  44.                         transition-duration: 0.3s;
  45.                     }
  46.    
  47.                     .active{
  48.                         font-weight: bold;
  49.                         color: $yellow;
  50.                     }
  51.    
  52.                    
  53.                 }
  54.    
  55.                 p{
  56.                     text-decoration: none;
  57.                     color: $white;
  58.                     font-family: $raleway;
  59.                     font-size: 18px;
  60.                     .underline{
  61.                         text-decoration: underline;
  62.                     }
  63.                     .bold{
  64.                         font-weight: bold;
  65.                     }
  66.                 }
  67.    
  68.                 .icon{
  69.                     margin: 20px;
  70.                     font-size: 50px;
  71.                     color: $white;
  72.                 }
  73.             }
  74.        }
  75.     }
  76. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement