Refactor HTML styles in CSS; consolidate styles for html and body elements to improve maintainability
All checks were successful
CI / build (push) Successful in 32s

This commit is contained in:
2025-07-23 20:50:18 +00:00
parent 614f8d2fd9
commit a58e31e9fc

View File

@@ -1,11 +1,16 @@
html {
margin: 0;
padding: 0;
min-height: 100%;
box-sizing: border-box;
font-family: Arial, sans-serif;
text-align: center;
background: linear-gradient(135deg, #1f1f22 0%, #232a33 100%);
color: #e0e0e0;
}
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
min-height: 100vh;
background: linear-gradient(135deg, #1f1f22 0%, #232a33 100%);
color: #e0e0e0;
}
h1 {