This commit is contained in:
Tong Hoang Vu 2022-11-26 23:49:50 +07:00 committed by GitHub
commit 898e35eb10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 4 deletions

7
dist/paper.css vendored
View file

@ -453,6 +453,11 @@ html {
}
/* stylelint-enable */
html {
background-color: #41403e;
background-color: var(--main-background);
}
/* Layout styling */
.container {
margin: 0 auto;
@ -3173,6 +3178,8 @@ nav .bar3 {
color: var(--primary);
border-bottom-left-radius: 15px 5px;
border-bottom-right-radius: 15px 3px;
border-bottom-style: solid;
border-bottom-width: 5px;
margin: 6px 0;
transition: 0.4s;
width: 2rem;

2
dist/paper.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -1,9 +1,6 @@
body {
background-image: url("/img/geometry2.png")
}
html.dark body {
background: #41403e;
}
#top {
max-width: 1440px;
}

View file

@ -0,0 +1,3 @@
html {
@include color('background-color', 'main-background');
}

View file

@ -4,6 +4,7 @@
@import 'core/config';
@import 'core/mixins';
@import 'core/reset';
@import 'core/default_styles';
/* Layout styling */
@import 'layout/container';