mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
Upgraded to Ember JS 2.16.x release. This upgrade uses the new JavaScript modules API syntax. Integrated Bootstrap 4 Beta 2 via package.json and associated popper.js library. Overridden Bootstrap styles using bootstrap.scss -- this file selectively imports the modules we need.
35 lines
784 B
SCSS
35 lines
784 B
SCSS
@mixin sticky()
|
|
{
|
|
position: -webkit-sticky;
|
|
position: -moz-sticky;
|
|
position: -ms-sticky;
|
|
position: -o-sticky;
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
display: flex;
|
|
z-index: 999;
|
|
width: 100%;
|
|
}
|
|
|
|
@mixin border-radius($radius)
|
|
{
|
|
-webkit-border-radius: $radius;
|
|
-moz-border-radius: $radius;
|
|
border-radius: $radius;
|
|
}
|
|
|
|
@mixin ease-in()
|
|
{
|
|
-webkit-transition: all 0.30s ease-in-out;
|
|
-moz-transition: all 0.30s ease-in-out;
|
|
-ms-transition: all 0.30s ease-in-out;
|
|
-o-transition: all 0.30s ease-in-out;
|
|
transition: all 0.30s ease-in-out;
|
|
}
|
|
|
|
@mixin content-container($pad-tb: 25px, $pad-lr: 50px) {
|
|
@include border-radius(2px);
|
|
padding: $pad-tb $pad-lr;
|
|
box-shadow: 0 0 0 0.75pt $color-stroke,0 0 3pt 0.75pt $color-stroke;
|
|
background-color: $color-white;
|
|
}
|