초기 커밋.
This commit is contained in:
37
DDUtilityHelp/scss/utilities/_animation.scss
Normal file
37
DDUtilityHelp/scss/utilities/_animation.scss
Normal file
@@ -0,0 +1,37 @@
|
||||
// Animation Utilities
|
||||
|
||||
// Grow In Animation
|
||||
|
||||
@keyframes growIn {
|
||||
0% {
|
||||
transform: scale(0.9);
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.animated--grow-in {
|
||||
animation-name: growIn;
|
||||
animation-duration: 200ms;
|
||||
animation-timing-function: transform cubic-bezier(.18,1.25,.4,1), opacity cubic-bezier(0,1,.4,1);
|
||||
}
|
||||
|
||||
// Fade In Animation
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.animated--fade-in {
|
||||
animation-name: fadeIn;
|
||||
animation-duration: 200ms;
|
||||
animation-timing-function: opacity cubic-bezier(0,1,.4,1);
|
||||
}
|
||||
17
DDUtilityHelp/scss/utilities/_background.scss
Normal file
17
DDUtilityHelp/scss/utilities/_background.scss
Normal file
@@ -0,0 +1,17 @@
|
||||
// Background Gradient Utilities
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.bg-gradient-#{$color} {
|
||||
background-color: $value;
|
||||
background-image: linear-gradient(180deg, $value 10%, darken($value, 15%) 100%);
|
||||
background-size: cover;
|
||||
}
|
||||
}
|
||||
|
||||
// Grayscale Background Utilities
|
||||
|
||||
@each $level, $value in $grays {
|
||||
.bg-gray-#{$level} {
|
||||
background-color: $value !important;
|
||||
}
|
||||
}
|
||||
7
DDUtilityHelp/scss/utilities/_border.scss
Normal file
7
DDUtilityHelp/scss/utilities/_border.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
@each $color, $value in $theme-colors {
|
||||
@each $position in ['left', 'bottom'] {
|
||||
.border-#{$position}-#{$color} {
|
||||
border-#{$position}: .25rem solid $value !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
4
DDUtilityHelp/scss/utilities/_display.scss
Normal file
4
DDUtilityHelp/scss/utilities/_display.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
// Overflow Hidden
|
||||
.o-hidden {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
3
DDUtilityHelp/scss/utilities/_progress.scss
Normal file
3
DDUtilityHelp/scss/utilities/_progress.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
.progress-sm {
|
||||
height: .5rem;
|
||||
}
|
||||
7
DDUtilityHelp/scss/utilities/_rotate.scss
Normal file
7
DDUtilityHelp/scss/utilities/_rotate.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
.rotate-15 {
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
|
||||
.rotate-n-15 {
|
||||
transform: rotate(-15deg);
|
||||
}
|
||||
54
DDUtilityHelp/scss/utilities/_text.scss
Normal file
54
DDUtilityHelp/scss/utilities/_text.scss
Normal file
@@ -0,0 +1,54 @@
|
||||
// Grayscale Text Utilities
|
||||
|
||||
.text-xs {
|
||||
font-size: .7rem;
|
||||
}
|
||||
|
||||
.text-lg {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.text-gray-100 {
|
||||
color: $gray-100 !important;
|
||||
}
|
||||
|
||||
.text-gray-200 {
|
||||
color: $gray-200 !important;
|
||||
}
|
||||
|
||||
.text-gray-300 {
|
||||
color: $gray-300 !important;
|
||||
}
|
||||
|
||||
.text-gray-400 {
|
||||
color: $gray-400 !important;
|
||||
}
|
||||
|
||||
.text-gray-500 {
|
||||
color: $gray-500 !important;
|
||||
}
|
||||
|
||||
.text-gray-600 {
|
||||
color: $gray-600 !important;
|
||||
}
|
||||
|
||||
.text-gray-700 {
|
||||
color: $gray-700 !important;
|
||||
}
|
||||
|
||||
.text-gray-800 {
|
||||
color: $gray-800 !important;
|
||||
}
|
||||
|
||||
.text-gray-900 {
|
||||
color: $gray-900 !important;
|
||||
}
|
||||
|
||||
.icon-circle {
|
||||
height: 2.5rem;
|
||||
width: 2.5rem;
|
||||
border-radius: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
Reference in New Issue
Block a user