Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.16 KB | None | 0 0
  1. /* Стили верхнего меню */
  2. #main-form {
  3.     position: relative;
  4.     display: block;
  5.     z-index:9000;
  6.     background: rgba(0,0,0,0.7);
  7.     height: 5em;
  8.     vertical-align: top;
  9.     width: 100%;
  10. }
  11.  
  12. #form-filler {
  13.     z-index:9000;
  14.     width: 25%;
  15.     height: 100%;
  16.     position: relative;
  17.     display: inline-block;
  18.     margin: 0;
  19.     padding: 0;
  20. }
  21.  
  22. #player-iframe {
  23.     z-index:9000;
  24.     display: inline;
  25.     position: relative;
  26.     width: 45%;
  27.     margin: 0;
  28.     padding: 0;
  29. }
  30.  
  31. #form-buttons {
  32.     z-index:9000;
  33.     display: inline;
  34.     position: relative;
  35.     vertical-align: top;
  36.     line-height: 100%;
  37.     height: 100%;
  38.     width: 25%;
  39.     margin: 0;
  40. }
  41.  
  42. #form-buttons li {
  43.     z-index:9000;
  44.     display: table-cell;
  45.     position: relative;
  46.     float: right;
  47.     height: 100%;
  48.     line-height: 4.5em;
  49.     width: auto;
  50.     color: #ffffff;
  51.     list-style-type: none;
  52.     border-left: #ffffff 1px solid;
  53.     border-radius: none;
  54.     padding: 0 1em 0 1em;
  55.     font-size: 14px;
  56.     transition: background 0.3s ease-out;
  57. }
  58.  
  59. #form-buttons li:hover {
  60.     z-index:9000;
  61.     background: #ffffff;
  62.     color: #000;
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement