Advertisement
toastyu

CSS

Jul 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. body {
  2. font-family: Arial, Helvetica, sans-serif;
  3. }
  4.  
  5. header {
  6. background: #4f2c73;
  7. min-width: 1000px;
  8. width: 100%;
  9. height: 76px;
  10. top: 0;
  11. left: 0;
  12. z-index: 100;
  13. border-bottom: 5px solid #4f2c73;
  14. }
  15. header ul {
  16. list-style: none;
  17. }
  18. header li {
  19. display: inline-block;
  20. float: left;
  21. padding: 10px;
  22. }
  23. header a {
  24. color: #fff;
  25. text-decoration: none;
  26. font-weight: bold;
  27. padding: 0px;
  28. }
  29. header nav a:hover {
  30. text-decoration: none;
  31. color: #aaa;
  32. }
  33. header #logo {
  34. float: left;
  35. display: inline-block;
  36. text-decoration: none;
  37. color: #fff;
  38. padding-left: 15px;
  39. }
  40.  
  41. nav {
  42. float: right;
  43. padding: 20px;
  44. }
  45.  
  46.  
  47. .userData{
  48. display: none;
  49. }
  50.  
  51. #videoBar{
  52. padding: 5px;
  53. background-color: #333;
  54. color: #fff;
  55. }
  56.  
  57. #videoBox{
  58. background-color: #333;
  59. margin: 0px auto;
  60. width: 650px;
  61. }
  62.  
  63. #seekBar{
  64. width: 350px;
  65. }
  66.  
  67. #volume{
  68. width: 75px;
  69. }
  70.  
  71. #playBtn{
  72. border: none;
  73. background: url(/test/imgs/uicons/play.png);
  74. width: 24px;
  75. height: 24px;
  76. cursor: pointer;
  77. opacity: .7;
  78. }
  79.  
  80. #playBtn:hover{
  81. opacity: 1;
  82. }
  83.  
  84. #muteBtn{
  85. border: none;
  86. background: url(/test/imgs/uicons/mute.png);
  87. width: 24px;
  88. height: 24px;
  89. cursor: pointer;
  90. opacity: .7;
  91. }
  92.  
  93. #muteBtn:hover{
  94. opacity: 1;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement