-fixed overflow of text
-fixed background in dark theme
This commit is contained in:
imfunny 2019-05-21 07:39:18 +05:30 committed by GitHub
parent 1bdf9ef7d2
commit 911a23c2c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -287,6 +287,7 @@ body{
font-size:24px;
font-weight:bold;
margin:1vh 0px;
word-wrap: break-word;
}
.about_section {
@ -294,11 +295,13 @@ body{
font-family: 'Questrial', sans-serif;
margin:2vh 0px;
font-weight:bold;
word-wrap: break-word;
}
.bottom_section {
margin:1vh 0px;
font-size:14px;
word-wrap: break-word;
}
.bottom_section span {

View File

@ -4,7 +4,7 @@
--blog-gray-color: rgb(180, 180, 180);
--background-image: linear-gradient(90deg, rgba(10, 10, 10, 0.6), rgb(10, 10, 10, 1)), url("{{background}}");
--background-background: linear-gradient(0deg, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.6)),
url("{{background-image}}") center center fixed;
url("{{background}}") center center fixed;
--height: 50vh;
}
#display h1 {
@ -25,7 +25,7 @@
}
@media (max-width: 800px) {
:root {
--background-image: linear-gradient(0deg, rgba(10, 10, 10, 1), rgb(10, 10, 10, 0)),
url("{{background-image}}") !important;
--background-image: linear-gradient(0deg, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0)),
url("{{background}}") !important;
}
}