almost done.

This commit is contained in:
Amir Mohamadi
2021-01-29 18:51:56 +03:30
parent 08a17401aa
commit 7647a98878
12 changed files with 383 additions and 28 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 434 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 KiB

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 KiB

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 371 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 KiB

After

Width:  |  Height:  |  Size: 307 KiB

+58 -5
View File
@@ -341,7 +341,7 @@
.hero {
.bg {
background-image: url("../img/services/hero.jpg");
background-image: url("../img/about/hero.jpg");
}
}
@@ -1494,6 +1494,10 @@
$appLayoutPadding: 55px;
@include transition(0.1s);
& > .container-fluid, & > .container-fluid .row {
padding: 0 !important;
}
.appTitle {
text-align: center;
@@ -1545,6 +1549,7 @@
background: $theme;
height: 100%;
@include boxSizing(border-box);
position: relative;
@media (max-width: 1400px) {
padding: 55px 15px;
@@ -1640,6 +1645,39 @@
.err {
color: $red;
}
.copyRight {
position: absolute;
width: 100%;
font-size: 12px;
bottom: 5px;
left: 0;
p {
color: rgba(#fff, 0.5);
text-align: center;
width: 100%;
a {
@keyframes blinking {
from {
color: rgba(#fff, 0.5);
}
to {
color: rgba(#fff, 0.7);
}
}
@include animation(blinking 1s alternate-reverse infinite);
@extend %defaultTransition;
color: rgba(#fff, 0.5);
&:hover {
color: rgba(#fff, 1);
}
}
}
}
}
.el-input {
@@ -1701,9 +1739,6 @@
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
height: 0;
overflow: hidden;
.success {
color: #67C23A;
@@ -1724,7 +1759,8 @@
}
p {
font-size: 20px;
font-size: 0;
letter-spacing: -10px;
font-weight: bold;
}
@@ -1732,6 +1768,23 @@
@include animation(waiting 0.7s alternate-reverse infinite);
}
}
.weight {
margin-top: 30px;
background: lightgray;
padding: 20px;
text-align: center;
opacity: 0;
p {
font-size: 0;
letter-spacing: -10px;
}
.colored {
color: $theme;
}
}
}
}