archemist

tugas9_css

Nov 12th, 2025 (edited)
711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. /* Gaya Umum Halaman */
  2. body {
  3.   font-family: Arial, sans-serif;
  4.   margin: 40px;
  5.   background-color: #f9f9f9;
  6. }
  7.  
  8. h1 {
  9.   color: #333;
  10. }
  11.  
  12. section {
  13.   background: white;
  14.   border-radius: 10px;
  15.   padding: 20px;
  16.   margin-bottom: 25px;
  17.   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  18. }
  19.  
  20. ul, ol, dl {
  21.   margin-left: 40px;
  22. }
  23.  
  24. dt {
  25.   font-weight: bold;
  26.   color: #0055a5;
  27. }
  28.  
  29. dd {
  30.   margin-bottom: 10px;
  31. }
  32.  
  33. /* === Gaya Tambahan dari Materi === */
  34.  
  35. /* Contoh elemen block dan inline */
  36. .blok {
  37.   background-color: #e8f5e9;
  38.   padding: 8px;
  39.   border: 1px solid #b2dfdb;
  40.   margin-bottom: 5px;
  41. }
  42.  
  43. .inline {
  44.   color: #0077cc;
  45.   font-weight: bold;
  46. }
  47.  
  48. /* Elemen div dan span */
  49. #header {
  50.   background-color: lightblue;
  51.   padding: 10px;
  52.   font-weight: bold;
  53.   text-align: center;
  54.   border-radius: 5px;
  55. }
  56.  
  57. #konten {
  58.   background-color: #fff;
  59.   padding: 15px;
  60.   border: 1px solid #ddd;
  61.   margin-top: 10px;
  62. }
  63.  
  64. #footer {
  65.   background-color: #eee;
  66.   text-align: center;
  67.   padding: 8px;
  68.   border-radius: 5px;
  69.   margin-top: 10px;
  70.   font-size: 14px;
  71. }
  72.  
  73. /* Class dan Id */
  74. .teks-merah {
  75.   color: red;
  76.   font-weight: bold;
  77. }
  78.  
  79. #unik {
  80.   color: green;
  81.   font-style: italic;
  82. }
  83.  
  84. /* Span penting */
  85. .penting {
  86.   background-color: #e6f0ff;
  87.   color: blue;
  88.   font-weight: bold;
  89.   padding: 2px 4px;
  90.   border-radius: 3px;
  91. }
  92.  
Advertisement
Add Comment
Please, Sign In to add comment