Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. @import "../../styles/includes/variables";
  2. @import "../../styles/includes/media-queries";
  3. @import "../../styles/includes/colors.scss";
  4.  
  5. .SocialMediaBlock {
  6.   width: 100%;
  7.   height: 72px;
  8.   padding: 24px 40px;
  9.   background-color: $base-light-blue-color;
  10.  
  11.   @include gt(md) {
  12.     display: block;
  13.     position: fixed;
  14.     top: 100px;
  15.     right: 0px;
  16.     width: 40px;
  17.     height: auto;
  18.     z-index: 1;
  19.     padding: 32px 24px 40px;
  20.   }
  21.  
  22.   @include gt(lg) {
  23.     width: 56px;
  24.   }
  25.  
  26.   @include gt(xl) {
  27.     width: 72px;
  28.   }
  29.  
  30.   .ShareText {
  31.  
  32.     display: block;
  33.     margin: 0 auto;
  34.     text-transform: uppercase;
  35.  
  36.     .DisplayText {
  37.       @include gt(md) {
  38.         text-align: center;
  39.       }
  40.     }
  41.   }
  42.  
  43.   .SocialMediaItemRaptor {
  44.     flex-direction: row;
  45.     display: flex;
  46.     display: -webkit-flex;
  47.     justify-content: space-between;
  48.  
  49.     @include gt(md) {
  50.       flex-direction: column;
  51.     }
  52.  
  53.     .SocialMediaItem {
  54.       padding-top: 16px;
  55.  
  56.       @include gt(md) {
  57.         text-align: center;
  58.         padding-top: 32px;
  59.       }
  60.     }
  61.  
  62.     .SocialMediaItem:nth-of-type(4) {
  63.       padding-right: 7px;
  64.       @include gt(md) {
  65.         padding-right: 0px;
  66.       }
  67.     }
  68.   }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement