Advertisement
schiavassa

Supple custom CSS

Aug 14th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. /* Hide tweets */
  2. #tweets {
  3.     display: none !important;
  4. }
  5.  
  6. /* Center navigation */
  7. @media screen and (min-width: 58.75em) {
  8.     #menu_bar {
  9.         display: block;
  10.         position: absolute;
  11.         top: 0;
  12.         bottom: 0;
  13.         left: 0;
  14.         right: 0;
  15.         text-align: center;
  16.     }
  17.    
  18.     .navi_dropdown {
  19.         text-align: left;
  20.     }
  21. }
  22.  
  23. /* Center slides headings */
  24. #top_banner .overlay .inner {
  25.     text-align: center;
  26. }
  27.  
  28. /* Fix logo on hover */
  29. #logo_link a:hover {
  30.     -webkit-transform: translate(0, -50%);
  31.     -ms-transform: translate(0, -50%);
  32.     transform: translate(0, -50%);
  33. }
  34.  
  35. /* Custom hero styles - adjust to taste */
  36. #hero {
  37.     max-width: 800px;
  38.     margin: 80px auto 100px auto;
  39.     text-align: center;
  40. }
  41.  
  42. #hero h3 span {
  43.     font-size: 85%;
  44. }
  45.  
  46. #hero a {
  47.     color: #00c4f5;
  48.     border-bottom: 1px solid #00c4f5;
  49. }
  50.  
  51. #hero a:hover {
  52.     color: #333;
  53.     border-color: #333;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement