Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* General */
  2.  
  3. html {
  4.     overflow-y: scroll;
  5.     position: relative;
  6.     min-height: 100%;
  7. }
  8. body {
  9.     background-color: #f4f4f4;
  10.     font-family: 'Work Sans', serif;
  11.     padding-top: 120px;
  12.     margin-bottom: 60px;
  13. }
  14. *:focus {
  15.     outline: none !important;
  16. }
  17. .main-container {
  18.     padding: 20px;
  19. }
  20.  
  21. /* Utility Classes */
  22.  
  23. .not-selectable {
  24.     -webkit-user-select: none;
  25.     -moz-user-select: none;
  26.     -ms-user-select: none;
  27.     -o-user-select: none;
  28.     user-select: none;
  29. }
  30. .selectable {
  31.     -webkit-user-select: all;
  32.     -moz-user-select: all;
  33.     -ms-user-select: all;
  34.     -o-user-select: all;
  35.     user-select: all;
  36. }
  37. .null-radius {
  38.     -moz-border-radius: 0;
  39.     -webkit-border-radius: 0;
  40.     border-radius: 0;
  41.     -khtml-border-radius: 0;
  42. }
  43.  
  44. /* Navbar */
  45.  
  46. .navbar {
  47.     min-height: 100px;
  48.     transition: all .3s ease;
  49.     background: #222 url('../img/simple-dashed.png');
  50.     border-bottom: 2px solid #ffea00;
  51.     -webkit-column-break-inside: avoid;
  52.     -moz-column-break-inside: avoid;
  53.     -o-column-break-inside: avoid;
  54.     -ms-column-break-inside: avoid;
  55.     column-break-inside: avoid;
  56.     -webkit-backface-visibility: hidden;
  57. }
  58. .navbar-brand {
  59.     position: relative;
  60. }
  61. .navbar-brand .nav-logo {
  62.     opacity: 1;
  63.     margin-top: 0;
  64.     transition: all .3s ease-in-out;
  65. }
  66. .navbar-brand .nav-logo.hidden {
  67.     opacity: 0;
  68.     margin-top: -100px;
  69. }
  70. .navbar .navbar-toggler {
  71.     color: #f1f1f1;
  72.     padding: 32px 10px 0 0;
  73.     transition: all .3s ease;
  74. }
  75. .navbar .navbar-nav .nav-item .nav-link {
  76.     color: #f1f1f1;
  77.     font-size: 14px;
  78.     font-weight: 500;
  79.     line-height: 78px;
  80.     transition: all .3s ease;
  81. }
  82. .navbar .navbar-nav .nav-item.active .nav-link {
  83.     color: #ffea00;
  84. }
  85. .navbar .navbar-nav .nav-item .nav-link:hover {
  86.     color: #ffea00;
  87. }
  88.  
  89. /* Collapsed Navbar */
  90.  
  91. .nav-collapse {
  92.     padding-top: 10px;
  93. }
  94. .nav-collapse .nav-item {
  95.     background: #303030;
  96.     padding: 8px 20px;
  97.     margin: 6px 0;
  98.     border: 1px solid #202020;
  99.     -moz-border-radius: 3px;
  100.     -webkit-border-radius: 3px;
  101.     border-radius: 3px;
  102.     -khtml-border-radius: 3px;
  103. }
  104. .nav-collapse .nav-item.active .nav-link {
  105.     color: #ffea00;
  106. }
  107. .nav-collapse .nav-link {
  108.     color: #fff;
  109. }
  110. .nav-collapse .nav-link:hover {
  111.     color: #ffea00;
  112. }
  113. .nav-collapse-overlay {
  114.     position: fixed;
  115.     top: 0;
  116.     left: 0;
  117.     height: 100%;
  118.     width: 100%;
  119.     z-index: -1;
  120.     background-color: transparent;
  121. }
  122.  
  123. /* Shrinked Navbar */
  124.  
  125. .navbarshrinked {
  126.     min-height: 50px;
  127. }
  128. .navbar .navbar-toggler.shrinked {
  129.     padding-top: 4px;
  130. }
  131. .navbar-brand img.nav-shrinked-logo {
  132.     opacity: 0;
  133.     transition: all .3s ease;
  134.     position: absolute;
  135.     top: 0;
  136.     left: 10px;
  137. }
  138. .navbar-brand img.nav-shrinked-logo.shown {
  139.     opacity: 1;
  140.     transition: all .3s .2s ease;
  141. }
  142. .navbarshrinked .navbar-nav .nav-item .nav-link {
  143.     line-height: 20px;
  144. }
  145.  
  146. /* UI Bootstrap Modal */
  147.  
  148. .modal-content {
  149.     padding: 20px 100px;
  150. }
  151.  
  152. /* Footer */
  153.  
  154. .footer {
  155.     position: absolute;
  156.     bottom: 0;
  157.     width: 100%;
  158.     height: 60px;
  159.     background: #222 url('../img/simple-dashed.png');
  160.     line-height: 60px;
  161.     color: #999;
  162.     font-size: 13px;
  163. }
  164. .footer .nav-link,
  165. .footer .nav-link:focus {
  166.     line-height: 13px;
  167.     font-size: 13px;
  168.     padding: 0 4px;
  169.     color: #999;
  170. }
  171. .footer .nav-link:hover {
  172.     color: #f1f1f1;
  173. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement