Advertisement
Guest User

Untitled

a guest
May 29th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 1.68 KB | None | 0 0
  1. ---
  2. ---
  3.  
  4. /* Global Style Rule */
  5.  
  6. /* RWD Laptop+ Style Rule */
  7. @media only screen and (min-width: 768px) {
  8.     body {
  9.         .header {
  10.             display: block;
  11.             padding: 3%;
  12.             .container {
  13.                 display: flex;
  14.                 .social-media-links {
  15.                     display: inline-flex;
  16.                     a {
  17.                         display: block;
  18.                         img {
  19.                             width: 40px;
  20.                         }
  21.                     }
  22.                 }
  23.                 .image {
  24.                     display: inline-block;
  25.                     img {
  26.                         border-radius: 50%;
  27.                         width: 200px;
  28.                     }
  29.                 }
  30.                 .text {
  31.                     display: inline-block;
  32.                     .site-title {
  33.                         font-size: 50pt;
  34.                         font-weight: bold;
  35.                         border-bottom: 1pt solid black;
  36.                     }
  37.                     .job-title {
  38.                         font-size: 25pt;
  39.                     }
  40.                 }
  41.             }
  42.             .navigation-bar {
  43.                 display: block;
  44.                 margin-left: 50%;
  45.                 .container {
  46.                     display: block;
  47.                     .active {
  48.                         color: grey;
  49.                     }
  50.                     a {
  51.                         color: black;
  52.                         text-decoration: none;
  53.                     }
  54.                     a:hover {
  55.                         color: grey;
  56.                     }
  57.                 }
  58.             }
  59.         }
  60.        
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement