feat: changed lots of stuff from the stylesheet; removed (temporary) the background image

This commit is contained in:
Vitor Gonçalves 2023-06-17 03:11:51 -03:00
parent 7fe5d7a4d4
commit 77d4a3ed44
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
1 changed files with 15 additions and 7 deletions

View File

@ -1,30 +1,38 @@
:root {
--default-background: #eeccff;
--root-background-color: #dddaec;
--default-background: #dddfff;
--accent-color: #61538d;
}
html {
display: inline;
background-image: url("bg.jpg");
/*background-image: url("bg.jpg");
background-position: center top;
background-attachment: scroll;
background-size: cover;
background-size: cover;*/
background-color: var(--root-background-color);
}
body {
font-family: Inconsolata, monospace;
}
a {
color: var(--accent-color);
text-decoration: none;
}
.block {
background-color: var(--default-background);
align-content: center;
text-align: center;
padding: 0.8em;
margin: 1em 20% 1em 20%;
padding: 0.75rem 1rem;
margin: 1.175rem 25% auto;
border-style: solid;
}
.text {
text-align: left;
padding: 0px 20% 0px 20%;
padding: 0px 3em;
}