Advertisement
coasterka

#5FlightOrderMenuCSS

Jun 10th, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. body, html {
  2.     font-family: Tahoma;
  3. }
  4.  
  5. #background {
  6.     width: 400px;
  7.     height: 295px;
  8.     background: #ffc0cb;
  9.     position: relative;
  10. }
  11.  
  12. h2 {
  13.     text-transform: uppercase;
  14.     font-style: italic;
  15.     text-align: center;
  16.     padding-top: 5px;
  17. }
  18.  
  19. #from, #to {
  20.     background: #ffc0cb;
  21.     width: 180px;
  22.     height: 215px;
  23.     margin-top: -15px;
  24.     margin-left: 8px;
  25.    
  26.     position: table-cell;
  27. }
  28.  
  29.     #from span, #to span {
  30.         font-size: 10px;
  31.         font-style: italic;
  32.        
  33.         padding-left: 5px;
  34.         text-transform: capitalize;
  35.     }
  36.  
  37. .dropdown {
  38.     height: 23px;
  39.     width: 170px;
  40.     margin: 5px 0px 0px 5px;
  41. }
  42.  
  43. .text-field {
  44.     height: 20px;
  45.     width: 166px;
  46.     margin: 5px 0px 0px 5px;   
  47. }
  48.  
  49. #age td {
  50.     font-size: 10px;
  51.     font-style: italic;
  52. }
  53.  
  54. #age-menus td input {
  55.     width: 50px;
  56. }
  57.  
  58. .time-menus td input {
  59.     width: 80px;
  60.     margin-bottom: -10px;
  61. }
  62.  
  63. #directs-label {
  64.     font-size: 10px;
  65.     font-style: italic;
  66.     margin-left: -5px;
  67.     vertical-align: middle;
  68. }
  69.  
  70. #search{
  71.     float: right;
  72.     margin-right: 5px;
  73.     margin-top: -7px;
  74. }
  75.  
  76.     #search input {
  77.         width: 170px;
  78.         height: 27px;
  79.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement