Advertisement
GWibisono

header.css

Jan 6th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.74 KB | None | 0 0
  1. .header{
  2.     top: 0px;
  3.     width: 100%;
  4.     height: 35px;
  5.     padding: 0px;
  6.     margin: 0px;
  7.     color: #ffffff;
  8.     background: #2099D6;
  9.     position: fixed;
  10.     z-index:1000;
  11. }
  12. .kiri{
  13.     float:left;
  14.     width:auto;
  15.     vertical-align:middle;
  16. }
  17. .logo{
  18.     float: left;
  19.     margin: 3px 10px 5px 10px;
  20.     padding: 0;
  21.     vertical-align: middle;
  22. }
  23. .logo img{
  24.     width: 30px;
  25.     height: 30x;
  26.     border-radius: 20px;
  27. }
  28. .logo img:hover{
  29.    
  30. }
  31. .namabengkel{
  32.     float: left;
  33.     margin: auto;
  34.     padding: 5px;
  35.     text-align: left;
  36.     font-size: 16pt;
  37.     color:#ffffff;
  38. }
  39.  
  40. .kanan{
  41.     height:34px;
  42.     width:auto;
  43.     float:right;
  44.     right: 0px;
  45.     display: inline;
  46. }
  47.  
  48. .header-nav {
  49.     list-style: none;
  50.     margin: 0px;
  51.     padding: 0px;  
  52. }
  53. .header-nav li {
  54.     color:#fff;
  55.     line-height: 18px;
  56.     text-indent: 0px;
  57. }
  58. .header-nav li ul{
  59.     display:none;
  60.  
  61. }
  62. .header-nav li:hover ul{
  63.     display:block;
  64.  
  65. }
  66.  
  67. .header-nav li img{
  68.     float: left;
  69.     margin: 0px 10px 0px 0px  ;
  70.     height: 16px;
  71.     width: 16px;
  72. }
  73. .header-nav li a {
  74.     display: block;
  75.     text-decoration: none;
  76. }
  77. .header-nav li a:active,
  78. .header-nav li a:focus {
  79.     text-decoration: none;
  80. }
  81. .menu,
  82. .keluar{
  83.     padding :10px 5px 7px 5px ;
  84.     margin:0;
  85.     float: left;
  86.     text-align: center;
  87.     vertical-align: top;
  88. }
  89. .menu:hover{
  90.     background: #fff;
  91.     color:#4D4D4D;
  92. }
  93. .keluar:hover{
  94.     background: #FF4F4F;
  95.     color:#4D4D4D;
  96. }
  97. .menu:active,
  98.  
  99. .kanan > a,
  100. .kanan > a:link{
  101.     text-decoration: none;
  102.     color: #fff;
  103. }
  104. .footer{
  105.     bottom: 0px;
  106.     width: 100%;
  107.     background: #ddd;
  108.     position: fixed;
  109.     float:right;
  110.     height: 20px;
  111.     font-size: 10pt;
  112.     padding: 1px;
  113.     margin-top:20px;
  114. }
  115. .footer-wrapper{
  116.     margin: 3px 15px auto;
  117.     text-align: right;
  118.     width:auto;
  119.     float:right;
  120.    
  121. }
  122. /*
  123. sumber:
  124. http://www.w3schools.com/howto/howto_css_dropdown.asp
  125. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement