Guest User

Untitled

a guest
May 3rd, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.19 KB | None | 0 0
  1. body
  2. {
  3.     background-color: #293134;
  4.     color: white;
  5.  
  6. }
  7. ol
  8. {
  9.     padding: 10px;
  10.     margin: 0;
  11.     font-size: 30px;
  12.     display: inline-block;
  13. }
  14. ol > li
  15. {
  16.     display: block;
  17.     width: 110px;
  18.     padding: 10px;
  19.     margin: auto auto;
  20.     list-style-type: none;
  21.     border-left: 3px dotted #BF3633;
  22.     float: left;
  23. }
  24. ol > li:hover
  25. {
  26.     background-color: #ff625f;
  27. }
  28. ol>li>ul
  29. {
  30.     padding:0;
  31.     margin:0;
  32.     list-style-type: none;
  33.     font-size: 20px;
  34.     text-align: center;
  35.     display: none;
  36. }
  37. ol>li:hover>ul
  38. {
  39.     display: block;
  40.     background-color: #ff625f;
  41. }
  42. ol>li>ul>li
  43. {
  44.     padding: 5px 0;
  45.     border-top: 2px dashed #bf3633;
  46.     position: relative;
  47.     z-index: 100;
  48. }
  49. a
  50. {
  51.     color: white;
  52.     text-decoration: none;
  53. }
  54. #main
  55. {
  56.     margin: auto;
  57.     width: 100%;
  58.     text-align: center;
  59. }
  60. #logo
  61. {
  62.     font-size: 50px;
  63.     padding: 10px;
  64. }
  65. #menuU
  66. {
  67.     text-align: center;
  68.     width: 100%;
  69.     background-color: #EE514E;
  70.     position: sticky;
  71.     position: -webkit-sticky;
  72.     top: 0;
  73.  
  74. }
  75. #content
  76. {
  77.     margin: auto;
  78.     width: 90%;
  79.     padding: 10px;
  80.     text-align: center;
  81.     background-color: #2f393c;
  82. }
  83. #content
  84. {
  85.     margin: auto;
  86.     margin-bottom: 20px;
  87. }
  88. #stopka
  89. {
  90.     margin: auto;
  91.     width: 90%;
  92.     padding: 5px;
  93.     border: 2px dotted white;
  94. }
Add Comment
Please, Sign In to add comment