mirror of
https://github.com/papercss/papercss
synced 2026-03-14 22:45:51 +01:00
Merge 8a15183bfa into 9b617f6283
This commit is contained in:
commit
898e35eb10
5 changed files with 12 additions and 4 deletions
7
dist/paper.css
vendored
7
dist/paper.css
vendored
|
|
@ -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
2
dist/paper.min.css
vendored
File diff suppressed because one or more lines are too long
3
docs/static/assets/demo.css
vendored
3
docs/static/assets/demo.css
vendored
|
|
@ -1,9 +1,6 @@
|
|||
body {
|
||||
background-image: url("/img/geometry2.png")
|
||||
}
|
||||
html.dark body {
|
||||
background: #41403e;
|
||||
}
|
||||
#top {
|
||||
max-width: 1440px;
|
||||
}
|
||||
|
|
|
|||
3
src/core/_default_styles.scss
Normal file
3
src/core/_default_styles.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
html {
|
||||
@include color('background-color', 'main-background');
|
||||
}
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
@import 'core/config';
|
||||
@import 'core/mixins';
|
||||
@import 'core/reset';
|
||||
@import 'core/default_styles';
|
||||
|
||||
/* Layout styling */
|
||||
@import 'layout/container';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue