Modification thème
This commit is contained in:
parent
4e9b50f2de
commit
609fea0daf
9 changed files with 46 additions and 33 deletions
File diff suppressed because one or more lines are too long
2
css-compiled/nucleus.min.css
vendored
2
css-compiled/nucleus.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
css-compiled/template.min.css
vendored
2
css-compiled/template.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3,11 +3,11 @@ $core-font-size: 1rem !default;
|
|||
$core-line-height: 1.7 !default;
|
||||
|
||||
// Heading Sizes
|
||||
$h1-font-size: $core-font-size + 2.20 !default;
|
||||
$h2-font-size: $core-font-size - 1.60 !default;
|
||||
$h3-font-size: $core-font-size - 1.50 !default;
|
||||
$h4-font-size: $core-font-size + 0.75 !default;
|
||||
$h5-font-size: $core-font-size + 0.35 !default;
|
||||
$h1-font-size: $core-font-size + 1.50 !default;
|
||||
$h2-font-size: $core-font-size - 1.30 !default;
|
||||
$h3-font-size: $core-font-size - 1.10 !default;
|
||||
$h4-font-size: $core-font-size + 0.65 !default;
|
||||
$h5-font-size: $core-font-size + 0.25 !default;
|
||||
$h6-font-size: $core-font-size - 0.15 !default;
|
||||
|
||||
// Spacing
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
|
||||
.fixed {
|
||||
background: #fff;
|
||||
padding-left: 14rem;
|
||||
padding-right: 14rem;
|
||||
padding-left: 12rem;
|
||||
padding-right: 12rem;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
@ -138,7 +138,7 @@
|
|||
}
|
||||
|
||||
#navbar {
|
||||
font-size: $core-font-size + 0.1rem;
|
||||
font-size: $core-font-size + 0.3rem;
|
||||
|
||||
@include breakpoint(mobile-only) {
|
||||
margin-left: -1rem;
|
||||
|
|
|
@ -19,13 +19,15 @@ $image-margin: 2rem;
|
|||
.notebooks {
|
||||
margin-top: 4rem;
|
||||
.notebook-row {
|
||||
box-shadow: inset 0px -90px 0px -20px $main-bg;
|
||||
// box-shadow: inset 0px -90px 0px -20px $main-bg;
|
||||
margin-left: -$padding-horiz;
|
||||
margin-right: -$padding-horiz;
|
||||
padding-left: $padding-horiz;
|
||||
padding-right: $padding-horiz;
|
||||
background: $text-bg;
|
||||
padding-bottom: 2rem;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
@include breakpoint(mobile-only) {
|
||||
margin-left: -$padding-horiz + 4rem;
|
||||
|
@ -70,6 +72,15 @@ $image-margin: 2rem;
|
|||
width: 100%;
|
||||
}
|
||||
}
|
||||
.logo {
|
||||
border-radius: 0.5rem 0.5rem 0 0;
|
||||
width: 18.28rem;
|
||||
height: 5rem;
|
||||
margin: 1rem auto;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
6
scss/vendor/bourbon/css3/_flex-box.scss
vendored
6
scss/vendor/bourbon/css3/_flex-box.scss
vendored
|
@ -67,9 +67,9 @@
|
|||
// flex | inline-flex
|
||||
@if $value == "flex" {
|
||||
// 2009
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: box;
|
||||
// display: -webkit-box;
|
||||
// display: -moz-box;
|
||||
// display: box;
|
||||
|
||||
// 2012
|
||||
display: -webkit-flex;
|
||||
|
|
Loading…
Reference in a new issue