mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
21813059f2
2. Added updated instructions to the README 3. Removed unused media css directories 4. Improved use of color variables for page theming. 5. Improved Typography and blog styling. 6. Added support for simple pre and code styles 7. Misc styling and markup improvements.
19 lines
428 B
SCSS
19 lines
428 B
SCSS
html {
|
|
background: $page-bg inline-image('line-tile.png') top left;
|
|
}
|
|
body {
|
|
border: 0 0 1px 0 solid darken($page-bg, 5);
|
|
> div {
|
|
background-color: $sidebar-bg;
|
|
border-bottom: 1px solid $page-border-bottom;
|
|
> div {
|
|
background-color: $main-bg;
|
|
border-right: 1px solid $sidebar-border;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1400px) {
|
|
body { border: 0 1px 0 solid darken($page-bg, 5); }
|
|
}
|