Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
fixed #41
Browse files Browse the repository at this point in the history
-fixed overflow of text
-fixed background in dark theme
  • Loading branch information
imfunniee committed May 21, 2019
1 parent 1bdf9ef commit 911a23c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions assets/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,18 +287,21 @@ body{
font-size:24px;
font-weight:bold;
margin:1vh 0px;
word-wrap: break-word;
}

.about_section {
font-size:18px;
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 {
Expand Down
6 changes: 3 additions & 3 deletions assets/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}
}

0 comments on commit 911a23c

Please sign in to comment.