/* --- 03. GLOBAL STYLING --- */ /* * Les styles "globaux" touchant toute la page. * */ @mixin li-no-margin() { li { margin: 0; } } @mixin container-big() { padding-left: $lineheight; padding-right: $lineheight; max-width: $container-size; margin:auto; } .no-pills { list-style:none; } .align { &-center {text-align: center;} &-left {text-align: left;} &-right {text-align: right;} } .illustration { width: 300px; display:block; margin:auto; @include xl() { width: 145%; padding-bottom: 0; margin-bottom: 1.5rem; position: relative; top: 0px; right: 64px; } } /* ------------------ HEADERS ------------------- */ #page-header { background: get-color("skyblue") url('img/background.png'); border-top: 6px solid get-color("dark"); background-position: bottom center; background-repeat: repeat-x; margin-bottom:-1.5rem; padding-bottom:5rem; .fa { font-size: 1rem; } @include sm() { padding-bottom: 0; margin-bottom: 1.5rem; } } header h1 { border-style:none !important; font-weight: $fontweight_hyper; font-size:5.4em; font-style:oblique; padding:1.5rem; line-height: 1rem; max-width: $container-size; margin: auto; text-align:center; @include lg() { text-align: left; } img { max-width: 640px; height: auto; margin-top:0rem; width: 100%; @include lg() { position: relative; left:-6rem; } z-index:0; } a, a:visited, a:hover { background-color:transparent; outline-color:white; display: block; } } .osd { background-color:rgba(0,0,0,0.3); } .navbar { border-left: 0; border-right: 0; padding: 0.75rem; color: $color-font-light; a { color: $color-font-light; } @include li-no-margin(); } .categories { font-weight:800; font-size:0.8rem; } .dropdown-menu { box-shadow: $narrow-shadow, $inset-shadow; } /* ------------------ CONTAINERS ------------------- */ .container-big { @include container-big(); } .container-blog { @include container-big(); display: grid; grid-template-columns: 1fr; grid-template-rows: auto; row-gap: $lineheight; column-gap: 1.5rem; grid-template-areas: "main" "side"; @include lg() { grid-template-columns: auto 320px; grid-template-areas: "main side"; } } .fullwidth { grid-column: span 2; } .sidebar { grid-area: side; } ul.tag-list { display:flex; padding-bottom:0; overflow: hidden; height:auto; flex-wrap: wrap; li { list-style: none; margin:3px; } } .container-preview { @include container-big(); display: grid; grid-template-columns: 1fr; grid-template-rows: auto; row-gap: $lineheight; column-gap: 3rem; grid-template-areas: "main" "side"; @include lg() { grid-template-columns: 360px auto; grid-template-areas: "side main"; } } .container-onecolumn { max-width:1280px; margin: auto; padding-bottom: $lineheight; } .container-personnage { @include container-big(); display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: auto; row-gap: 3rem; column-gap: 3rem; grid-template-areas: "nomp nomp nomp nomp nomp nomp" "info info info info meta meta" "goss goss look look look look" "aime aime aime dete dete dete" "hist hist hist hist hist hist"; .card { margin:0; } h1 { padding:0; } } .personnage { &-nomp {grid-area: nomp;} &-info {grid-area: info;} &-meta {grid-area: meta;} &-goss {grid-area: goss;} &-look {grid-area: look;} &-aime {grid-area: aime;} &-dete {grid-area: dete;} &-hist {grid-area: hist;} } /* ------------------ PAGE ------------------- */ #wrapper { background-color: $color-background; } /* ------------------ FOOTER ------------------- */ $color-footer-back: get-color("dark"); $color-footer-text: get-color("light"); body { // On colorise le background de la page complete de la même // couleur que le fond du footer. background-color: $color-footer-back; } footer { @include angled-edge('outside top', 'upper left', $color-footer-back, 24); color: $color-footer-text; padding-bottom:1.5rem; padding-top: 1.5rem; .columns { a { color: $color-footer-text; } } } .home-toast { max-width:800px; width:100%; margin:auto; } ul.social { font-size: 1.5em; padding-bottom: 0; margin: auto; text-align: center; display: flex; justify-content: center; li { margin: 0; list-style: none; line-height: 1; a, a:visited { color: $color-footer-back; background-color: $color-footer-text; padding: 0.3em; width: 3rem; aspect-ratio: 1; display:flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 100%; line-height: 1; margin:0.33rem; &:hover { color: $color-footer-text; background-color: $color-footer-back; } } } }