background to html

This commit is contained in:
Thijs Stobbelaar 2023-10-04 09:07:39 +02:00
parent cf32a5ef17
commit b694b3007b

View file

@ -8,13 +8,17 @@ body, h1, h2, p, ul, li, a {
text-decoration: none;
}
html {
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
height: 100%;
overflow-x: auto;
}
body {
font-family: 'Roboto', sans-serif;
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
color: white;
min-height: 100vh; /* 100% of the viewport's height */
display: flex;
flex-direction: column;
min-height: 100%;
margin: 0; /* Ensure there's no default margin */
}