Variables

x
10
y
20
z
30
a
15
b
25
c
10
  • Element 1
  • Element 2
  • Element 3
  • Element 4
  • Element 5
  • ``` ```css /* Basic Styling - for clarity */ body { font-family: 'Arial', sans-serif; margin: 20px; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: 0 auto; padding: 20px; border: 1px solid #ccc; border-radius: 10px; } .variable-container { margin-bottom: 20px; padding: 15px; border: 1px solid #ccc; border-radius: 8px; } .variable-label { font-weight: bold; margin-bottom: 5px; } .variable-value { font-size: 16px; color: #333; } .input-field { border: 1px solid #ccc; padding: 10px; margin-bottom: 10px; border-radius: 4px; } .input-field:focus { outline: none; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); } .input-element { margin-bottom: 5px; } .element-list { list-style: none; padding: 8px; margin-bottom: 10px; } .element-list li { margin-bottom: 5px; } .element-list li:last-child { border-bottom: 1px solid #ccc; } .element-list li:last-child a { text-decoration: none; color: #333; font-size: 12px; margin-bottom: 5px; } .element-list li a { color: #333; } .element-list li .element-title { font-weight: bold; margin-bottom: 5px; }