development refactoring

This commit is contained in:
Burak Civan
2022-12-07 17:20:25 +03:00
parent 7d88423e24
commit 5599b41fd3
10 changed files with 108 additions and 81 deletions

View File

@ -1,82 +1,99 @@
/* content */
@media (min-width: 1024px) {
.content-modal {
width: 100%;
.lg\:w-4\/5 {
width: 80%;
}
.lg\:-mt-16 {
margin-top: -4rem;
}
.lg\:flex {
display: flex;
}
}
.content-modal {
position: fixed;
width: 80%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
margin-left: -0.25rem;
margin-right: -0.25rem;
z-index: 60;
top: 0px;
bottom: 0px;
background-color: rgb(252, 252, 252);
z-index: 60;
}
[dir="ltr"] .content-modal {
[dir="ltr"] .ltr\:right-0 {
right: 0px;
}
[dir="rtl"] .content-modal {
[dir="rtl"] .ltr\:left-0 {
left: 0px;
}
@media (min-width: 1024px) {
.content-modal img {
margin-top: -4rem;
}
.bg-body {
background-color: #fcfcfc;
}
.content-modal img {
.justify-center {
justify-content: center;
}
.items-center {
align-items: center;
}
.items-start {
align-items: flex-start;
}
.w-full {
width: 100%;
}
.h-screen {
height: 100vh;
}
.-mx-1 {
margin-left: -0.25rem;
margin-right: -0.25rem;
}
.bottom-0 {
bottom: 0px;
}
.top-0 {
top: 0px;
}
.left-0 {
left: 0px;
}
.right-0 {
right: 0px;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
.w-28 {
width: 7rem;
height: 7rem;
}
/* content */
/* absolute */
@media (min-width: 1024px) {
.absolute-modal {
display: block;
}
}
.absolute-modal {
position: absolute;
width: 100%;
display: flex;
align-items: start;
justify-content: center;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
background-color: rgb(252, 252, 252);
z-index: 60;
}
.absolute-modal img {
width: 7rem;
.h-28 {
height: 7rem;
}
/* absolute */
}
.material-icons-outlined {
font-family: 'Material Icons Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
font-family: 'Material Icons Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}