You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
643 B
39 lines
643 B
@mixin flexContainer($jc) { |
|
display: flex; |
|
flex-direction: row; |
|
flex-wrap: wrap; |
|
justify-content: $jc; |
|
align-items: center; |
|
} |
|
@mixin style($size, $color, $bold: normal) { |
|
font-size: $size; |
|
color: $color; |
|
font-weight: $bold; |
|
} |
|
@mixin wh($w, $h) { |
|
width: $w; |
|
height: $h; |
|
} |
|
@mixin position($type, $top, $right, $bottom, $left) { |
|
position: $type; |
|
left: $left; |
|
top: $top; |
|
right: $right; |
|
bottom: $bottom; |
|
} |
|
@mixin fixed($t, $l) { |
|
position: fixed; |
|
top: $t; |
|
left: $l; |
|
} |
|
@keyframes show { |
|
0% { |
|
opacity: 0; |
|
} |
|
50% { |
|
opacity: 0.5; |
|
} |
|
100% { |
|
opacity: 1; |
|
} |
|
}
|
|
|