Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.81 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5.  
  6. header {
  7.     padding: .5em 0 2em 0;
  8. }
  9.  
  10. html {
  11.     background-color: white;
  12. }
  13.  
  14. .sns {
  15.     float: right;
  16.     padding: .2em 4em 0 2em;
  17. }  
  18.  
  19. /* the styles for the navigation menu */
  20. ul {
  21.     list-style-type: none;
  22.     margin: 0;
  23.     padding: 0;
  24.     overflow: hidden;
  25.     background-color: #333;
  26. }
  27.  
  28. li {
  29.     float: left;
  30. }
  31.  
  32. li a, .dropbtn {
  33.     display: inline-block;
  34.     color: white;
  35.     text-align: center;
  36.     padding: 14px 16px;
  37.     text-decoration: none;
  38. }
  39.  
  40. li a:hover:not(.active), .dropdown:hover .dropbtn {
  41.     background-color: #111;
  42. }
  43.  
  44. .active {
  45.     background-color: #4CAF50;
  46. }
  47.  
  48. li.dropdown {
  49.     display: inline-block;
  50. }
  51.  
  52. .dropdown-content {
  53.     display: none;
  54.     position: absolute;
  55.     background-color: #333;
  56.     min-width: 160px;
  57.     box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  58.     z-index: 1;
  59. }
  60.  
  61. .dropdown-content a {
  62.     color: white;
  63.     padding: 12px 16px;
  64.     text-decoration: none;
  65.     display: block;
  66.     text-align: left;
  67. }
  68.  
  69. .dropdown-content a:hover {background-color: #333}
  70.  
  71. .dropdown:hover .dropdown-content {
  72.     display: block;
  73. }
  74.  
  75. body {
  76.     padding-top: 20px;
  77. }
  78.  
  79. #custom_carousel .item {
  80.     color:#000;
  81.     background-color:#eee;
  82.     padding:20px 0;
  83. }
  84.  
  85. #custom_carousel .controls{
  86.     overflow-x: auto;
  87.     overflow-y: hidden;
  88.     padding:0;
  89.     margin:0;
  90.     white-space: nowrap;
  91.     text-align: center;
  92.     position: relative;
  93.     background:#ddd;
  94. }
  95.  
  96. #custom_carousel .controls li {
  97.     display: table-cell;
  98.     width: 1%;
  99.     max-width:90px;
  100. }
  101.  
  102. #custom_carousel .controls .active {
  103.     background-color:#eee;
  104.     border-top:3px solid orange;
  105. }
  106.  
  107. #custom_carousel .controls a small {
  108.     overflow:hidden;
  109.     display:block;
  110.     font-size:10px;
  111.     margin-top:5px;
  112.     font-weight:bold;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement