create(layout) created persistance layout

This commit is contained in:
Yusuf İpek
2021-07-26 15:10:13 +03:00
parent 833c6c79cd
commit 20b769086a
18 changed files with 814 additions and 203 deletions
+43
View File
@@ -0,0 +1,43 @@
@keyframes moveInBottom {
0% {
opacity: 0;
transform: translateY(10rem);
}
100% {
opacity: 1;
transform: translate(0);
}
}
@keyframes moveInLeft {
0% {
opacity: 0;
transform: translateX(-10rem);
}
80% {
transform: translateX(1rem);
}
100% {
opacity: 1;
transform: translate(0);
}
}
@keyframes moveInRight {
0% {
opacity: 0;
transform: translateX(10rem);
}
80% {
transform: translateX(-1rem);
}
100% {
opacity: 1;
transform: translate(0);
}
}
+23
View File
@@ -0,0 +1,23 @@
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%; // 1 rem = 10px; 10px/16px = 62.5% (16 is default browser font size)
}
body {
box-sizing: border-box;
padding: 3rem;
}
/*
::selection {
background-color: $color-primary;
color: $color-white;
}
*/
View File
+21
View File
@@ -0,0 +1,21 @@
.u-center-text {
text-align: center !important;
}
.u-margin-bottom-big {
margin-bottom: 8rem !important;
}
.u-margin-bottom-medium {
margin-bottom: 4rem !important;
}
.u-margin-bottom-small {
margin-bottom: 1.5rem !important;
}
.u-margin-top-big {
margin-top: 8rem !important;
}
.u-margin-top-huge {
margin-top: 10rem !important;
}