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
All checks were successful
CI / build (push) Successful in 32s
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user