|
@@ -4,6 +4,7 @@
|
|
@import './base/grid-flex';
|
|
@import './base/grid-flex';
|
|
@import './base/layout';
|
|
@import './base/layout';
|
|
@import './base/fonts';
|
|
@import './base/fonts';
|
|
|
|
+@import './base/transitions';
|
|
|
|
|
|
|
|
|
|
body{
|
|
body{
|
|
@@ -55,62 +56,71 @@ section[role="main-content"]{
|
|
|
|
|
|
}
|
|
}
|
|
footer[role="tools"]{
|
|
footer[role="tools"]{
|
|
|
|
+ $list-item-h: 5.3em;
|
|
#history{
|
|
#history{
|
|
|
|
+ z-index: 8;
|
|
background-color: $or;
|
|
background-color: $or;
|
|
padding:1.2em $side-padding;
|
|
padding:1.2em $side-padding;
|
|
}
|
|
}
|
|
#results{
|
|
#results{
|
|
|
|
+ z-index: 9;
|
|
background-color: $gris;
|
|
background-color: $gris;
|
|
- max-height: 50vh;
|
|
|
|
padding:1.2em $side-padding;
|
|
padding:1.2em $side-padding;
|
|
- section.col-1{
|
|
|
|
|
|
+ max-height: $list-item-h * 3;
|
|
|
|
+ @include accordeon-transition($list-item-h * 3);
|
|
|
|
+ >header{
|
|
.results-count{
|
|
.results-count{
|
|
font-size: 0.756em;
|
|
font-size: 0.756em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.results-list{
|
|
.results-list{
|
|
- overflow-x: hidden;
|
|
|
|
- .wrapper{
|
|
|
|
- height:100%;
|
|
|
|
- overflow-y: auto;
|
|
|
|
- width:calc(100% + 1em);
|
|
|
|
- padding-right: 1em;
|
|
|
|
- >ul{
|
|
|
|
- padding:0;
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: row;
|
|
|
|
- flex-wrap: wrap;
|
|
|
|
- }
|
|
|
|
|
|
+ overflow-x: hidden;
|
|
|
|
+ .wrapper{
|
|
|
|
+ height:100%;
|
|
|
|
+ overflow-y: auto;
|
|
|
|
+ width:calc(100% + 1em);
|
|
|
|
+ padding-right: 1em;
|
|
|
|
+ >ul{
|
|
|
|
+ padding:0;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: wrap;
|
|
}
|
|
}
|
|
- li.result{
|
|
|
|
- flex-basis: percentage(2/$default_sum);
|
|
|
|
- height: 5.3em;
|
|
|
|
|
|
+ }
|
|
|
|
+ li.result{
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ flex-basis: percentage(2/$default_sum);
|
|
|
|
+ height: $list-item-h;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ padding-bottom: 1em;
|
|
|
|
+ padding-right: 0.7em;
|
|
|
|
+ article{
|
|
|
|
+ max-height: 100%;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
- margin-bottom: 1em;
|
|
|
|
- padding-right: 0.7em;
|
|
|
|
- box-sizing: border-box;
|
|
|
|
}
|
|
}
|
|
- article.result.item{
|
|
|
|
- header{
|
|
|
|
- h1{
|
|
|
|
- font-size: 0.882em;
|
|
|
|
- font-weight: normal;
|
|
|
|
- margin:0 0 0.5em 0;
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ article.result.item{
|
|
|
|
+ header{
|
|
|
|
+ h1{
|
|
|
|
+ font-size: 0.882em;
|
|
|
|
+ font-weight: normal;
|
|
|
|
+ margin:0 0 0.5em 0;
|
|
}
|
|
}
|
|
- .extract{
|
|
|
|
- p{
|
|
|
|
- font-size: 0.882em;
|
|
|
|
- margin:0;
|
|
|
|
- }
|
|
|
|
- code{
|
|
|
|
- background-color: lighten(desaturate($rouge,20%), 20%);
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+ .extract{
|
|
|
|
+ p{
|
|
|
|
+ font-size: 0.882em;
|
|
|
|
+ margin:0;
|
|
|
|
+ }
|
|
|
|
+ code{
|
|
|
|
+ background-color: lighten(desaturate($rouge,20%), 20%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ }
|
|
#footer-bottom{
|
|
#footer-bottom{
|
|
|
|
+ z-index: 10;
|
|
padding:0 $side-padding;
|
|
padding:0 $side-padding;
|
|
background-color: $bleuroi;
|
|
background-color: $bleuroi;
|
|
&>*{
|
|
&>*{
|
|
@@ -143,6 +153,7 @@ footer[role="tools"]{
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
+ @include fade-transition;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -219,20 +230,3 @@ span.mdi-loading{
|
|
animation-iteration-count: infinite;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: linear;
|
|
animation-timing-function: linear;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
-// _ _ _ _
|
|
|
|
-// | |_ _ _ __ _ _ _ __(_) |_(_)___ _ _ ___
|
|
|
|
-// | _| '_/ _` | ' \(_-< | _| / _ \ ' \(_-<
|
|
|
|
-// \__|_| \__,_|_||_/__/_|\__|_\___/_||_/__/
|
|
|
|
-
|
|
|
|
-.fade-roll-enter-active{
|
|
|
|
- transition: all .3s ease-in-out;
|
|
|
|
-}
|
|
|
|
-.fade-roll-leave-active{
|
|
|
|
- transition: all .8s ease;
|
|
|
|
-}
|
|
|
|
-.fade-roll-enter, .fade-roll-leave-to{
|
|
|
|
- opacity:0;
|
|
|
|
- // height:1px;
|
|
|
|
-}
|
|
|