Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. h1{
  2. color: #ffa700;
  3. font-size: 55px;
  4. text-align: center;
  5. }
  6.  
  7. h2{
  8. color: #000000
  9. }
  10.  
  11. h3{
  12. color: #000000;
  13. }
  14.  
  15. body{
  16. font-family: Arial, Helvetica, sans-serif;
  17. margin: 0;
  18. }
  19.  
  20. footer{
  21. position: fixed;
  22. left: 0;
  23. bottom: 0;
  24. width: 100%;
  25. background-color: #ffc98b;
  26. color: white;
  27. text-align: center;
  28. }
  29.  
  30. header{
  31. position: fixed;
  32. left: 0;
  33. top: 0;
  34. width: 100%;
  35. background-color: #ffc98b;
  36. color: white;
  37. text-align: center;
  38. }
  39.  
  40. header img {
  41. height: ;
  42. width: ;
  43. }
  44.  
  45. .navbar {
  46. padding: 0px 0px;
  47. overflow: hidden;
  48. background-color: #333;
  49. }
  50.  
  51. .subnav {
  52. float: left;
  53. overflow: hidden;
  54. }
  55.  
  56. .subnav .subnavbtn {
  57. font-size: 16px;
  58. border: none;
  59. outline: none;
  60. color: white;
  61. padding: 14px 182.4px;
  62. background-color: #3498DB;
  63. font-family: inherit;
  64. margin: 0;
  65. }
  66.  
  67. .subnav:hover .subnavbtn {
  68. background-color: red;
  69. }
  70.  
  71. .subnav-content {
  72. display: none;
  73. position: absolute;
  74. background-color: #f1f1f1;
  75. width: 400px;
  76. z-index: 1;
  77. }
  78.  
  79. .subnav-content a {
  80. float: left;
  81. color: black;
  82. text-decoration: none;
  83. }
  84.  
  85. .subnav-content a:hover {
  86. display: #eee;
  87. color: black;
  88. }
  89.  
  90. .subnav:hover .subnav-content {
  91. display: block;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement