1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-05 05:25:27 +02:00

Replaced Material Icons & Boostrap with custom UI framework

This commit is contained in:
Harvey Kandola 2018-12-21 11:15:59 +00:00
parent d0f0a12f2d
commit 61c648a7ac
75 changed files with 116 additions and 1445 deletions

View file

@ -7,6 +7,15 @@
position: sticky;
}
@mixin card() {
background-color: $color-card;
box-shadow: 1px 1px 3px 0px rgba(211,211,211,1);
&:hover {
background-color: map-get($gray-shades, 100);
}
}
@mixin border-radius($radius)
{
-webkit-border-radius: $radius;
@ -37,32 +46,3 @@
border-bottom-left-radius: $radius;
border-bottom-right-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 map-get($gray-shades, 200),0 0 3pt 0.75pt map-get($gray-shades, 200);
background-color: $color-white;
}
@mixin card() {
background-color: $color-card;
box-shadow: 1px 1px 3px 0px rgba(211,211,211,1);
&:hover {
background-color: map-get($gray-shades, 100);
}
}
@mixin shadow() {
box-shadow: 1px 1px 3px 0px rgba(211,211,211,1);
}