Advertisement
coasterka

#4WebsiteHeaderCSS

Jun 5th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 KB | None | 0 0
  1. table {
  2.     width: 100%;
  3.     height: 120px;
  4.     cellspacing: 15px;
  5.     cellpadding: 15px;
  6. }
  7.  
  8.     table tr td{
  9.         text-align:right;
  10.     }
  11.  
  12. #header {
  13.     height: 120px;
  14.     width: 100%;
  15.     background: #234465;
  16. }
  17.  
  18.     #header img {
  19.         padding-left: 10px;
  20.     }
  21.  
  22. #user-menu {
  23.     display: none;
  24. }
  25.    
  26. .softuni-logo {
  27.     text-align: left;
  28.     padding-left: 15px;
  29. }
  30.  
  31. .notifications, .user, .bottom-row {
  32.     color: white;
  33.     vertical-align: middle;
  34.     text-shadow: 0px 1px 0px black;
  35.     font-weight: bold;
  36.     font-family: Tahoma, sans-serif;
  37.     font-size: 12px;
  38.     text-align: right;
  39.     text-decoration: none;
  40. }
  41.  
  42.     .user li a, .bottom-row a {
  43.         text-decoration: none;
  44.         color: white;
  45.     }
  46.  
  47.     .notifications input {
  48.         width: 16px;
  49.         height: 19px;
  50.     }
  51.  
  52. #search {
  53.     margin-left: 10px;
  54.     margin-right: 10px;
  55.     height: 25px;
  56.     width: 250px;
  57.     background: white;
  58.     text-align: left;
  59.     border-radius: 5px;
  60.     float: right;
  61. }
  62.  
  63.     #search span {
  64.         color: gray;
  65.         vertical-align: middle;    
  66.     }
  67.        
  68.         #search span input {
  69.             background: transparent;
  70.             border-left: 1px solid #d5d5d5;
  71.             float: right;
  72.             padding-top: 5px;
  73.             padding-right: 5px;
  74.         }
  75.        
  76.         #search span input:hover {
  77.             background: #5ae344;
  78.         }
  79.        
  80. .search-engine {
  81.     border: 0px;
  82.     vertical-align: middle;
  83.     height: 20px;
  84.     width: 172px;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement