first commit

This commit is contained in:
2024-03-15 16:26:27 +05:30
commit 381106cbe5
1046 changed files with 285998 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// Set Text Color
@function set-text-color($color) {
@if (lightness($color) > 50) {
@return #000;
} @else {
@return #fff;
}
}
// Transform mixin
@mixin transform($property) {
--webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
+43
View File
@@ -0,0 +1,43 @@
@mixin absCenter {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
// MEDIA QUERY MANAGER
/*
0 - 600px: Phone
600 - 900px: Tablet portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + : Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
@mixin respond($breakpoint) {
@if $breakpoint == phone {
@media only screen and (max-width: 600px) { @content }; //600px
}
@if $breakpoint == tab-port {
@media only screen and (max-width: 900px) { @content }; //900px
}
@if $breakpoint == tab-land {
@media only screen and (max-width: 1200px) { @content }; //1200px
}
@if $breakpoint == big-desktop {
@media only screen and (min-width: 1800) { @content }; //1800
}
}
+5
View File
@@ -0,0 +1,5 @@
// $primary-color: steelblue;
$grey-bg:#EEEEEE;
$animation-timer:.8s;