Advertisement
Guest User

Untitled

a guest
Nov 9th, 2015
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.38 KB | None | 0 0
  1. /* Footer */
  2.  
  3.     #footer {
  4.         -moz-transition: opacity 0.5s ease-in-out;
  5.         -webkit-transition: opacity 0.5s ease-in-out;
  6.         -ms-transition: opacity 0.5s ease-in-out;
  7.         transition: opacity 0.5s ease-in-out;
  8.         bottom: 2em 0 2em 0;
  9.         color: rgba(255, 255, 255, 0.5);
  10.         left: 4em;
  11.         opacity: 0.5;
  12.         position: fixed;
  13.     }
  14.  
  15.         #footer .icons {
  16.             margin: 0 0 0.5em 0;
  17.         }
  18.  
  19.         #footer .copyright {
  20.             font-size: 0.8em;
  21.             list-style: none;
  22.         }
  23.  
  24.             #footer .copyright li {
  25.                 border-left: solid 1px rgba(255, 255, 255, 0.25);
  26.                 display: inline-block;
  27.                 line-height: 1em;
  28.                 margin: 0 0 0 0.75em;
  29.                 padding: 0 0 0 0.75em;
  30.             }
  31.  
  32.                 #footer .copyright li:first-child {
  33.                     border-left: 0;
  34.                     margin-left: 0;
  35.                     padding-left: 0;
  36.                 }
  37.  
  38.             #footer .copyright a {
  39.                 color: inherit;
  40.             }
  41.  
  42.         #footer:hover {
  43.             opacity: 1;
  44.         }
  45.  
  46.         #footer > :last-child {
  47.             margin-bottom: 0;
  48.         }
  49.  
  50.         @media screen and (max-width: 1680px) {
  51.  
  52.             #footer {
  53.                 bottom: 6.5em;
  54.                 left: 5.5em;
  55.             }
  56.  
  57.         }
  58.  
  59.         @media screen and (max-width: 736px) {
  60.  
  61.             #footer {
  62.                 bottom: 2em;
  63.                 left: 2em;
  64.             }
  65.  
  66.         }
  67.  
  68.         @media screen and (max-width: 360px) {
  69.  
  70.             #footer {
  71.                 bottom: 1.25em;
  72.                 left: 1.25em;
  73.             }
  74.  
  75.         }
  76.  
  77.         @media screen and (max-height: 640px) {
  78.  
  79.             #footer {
  80.                 bottom: auto;
  81.                 left: auto;
  82.                 margin: 1em 0 0 0;
  83.                 position: relative;
  84.             }
  85.  
  86.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement