Advertisement
darrym

Untitled

Nov 14th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.98 KB | Source Code | 0 0
  1. body{
  2.     background: rgba(125, 127, 133, 0.753);
  3. }
  4. * {
  5.     margin: 0;
  6.     padding: 0;
  7. }
  8. header,nav,main,footer {
  9.  display: block;
  10. }
  11. .web {
  12.     margin: 10px auto;
  13.     width: 99%;
  14. }
  15. #logo {
  16.     float: left;
  17.     height: 125px;
  18.     margin-right: 10px;
  19.     margin-left: 4px;
  20. }
  21. #judul {
  22.     background: rgb(150, 139, 139);
  23.     height: 115px;
  24.     margin: 10px auto -15px auto ;
  25.     padding: 10px 0 20px 0;
  26.     border-radius: 10px 10px 0 0;
  27.     box-shadow: 0 0 10px rgba(212, 208, 233, 0.938) inset;
  28. }
  29. #judul h1 {
  30.     font-family: 'Brush Script MT', cursive;
  31.     font-size: 35px;
  32.   line-height: 38px;
  33.   font-weight: 500px;
  34. }            
  35. #judul h2 {
  36.     font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  37.     margin-top: 5px;
  38.     font-size: 27px;
  39.   font-weight: 300px;
  40.   color: rgba(13, 97, 165, 0.89);
  41. }
  42.  
  43. /* menu Navigasi */
  44. nav ul {
  45.     width: 100%;
  46.     list-style: none;
  47.    position: relative;
  48.    display: inline-table;
  49.    padding:0;
  50.    box-shadow: 0 0 10px rgba(0, 0, 0, 0.842) inset;
  51. }
  52. nav ul:after {
  53.     content: '';
  54.     clear: both;
  55.     display: block;
  56. }
  57. nav ul li {
  58.     float: left;
  59. }
  60. nav ul li:hover {
  61.     background: rgba(19, 89, 146, 0.781);
  62.     border-radius: 5px;
  63. }
  64. nav ul li:hover a {
  65.     color: #fff;
  66. }
  67. nav ul li a {
  68.     display: block;
  69.     padding: 10px 20px;
  70.     text-decoration: none;
  71.     color: #110b0b9f;
  72. }
  73. /*menghilangkan sub menu*/
  74. nav ul ul {
  75.     display: none;
  76. background: rgb(155, 155, 148);
  77. border-radius: 0;
  78. padding: 0;
  79. position: absolute;
  80. top: 100%;
  81. width: 150px;
  82. }
  83. /*memunculkan sub menu*/
  84. nav ul li:hover > ul {
  85.     display: block;
  86. }
  87. nav ul ul li {
  88.     float: none;
  89.     border-bottom: 1px solid #fff;
  90.    position: relative;
  91. }
  92. nav ul ul li a {
  93.     padding: 10px 15px;
  94.     color: #5a5cbe;
  95. }
  96. nav ul ul li a:hover {
  97.     background: #3b1691
  98. }
  99.  
  100. /*solusi submenu yang ada submenu lagi*/
  101. nav ul ul ul {
  102.     position: absolute;
  103.     left: 100%;
  104.     top:0;
  105. }
Tags: CSS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement