somewhere
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
.about--page {
|
||||
.txt {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
h2 {
|
||||
color: #fff;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
width: 100%;
|
||||
text-align: center !important;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: rgba(#fff, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
text-align: center;
|
||||
padding: 80px 0;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.s2 {
|
||||
padding: 100px 0;
|
||||
background: #142b3e;
|
||||
}
|
||||
|
||||
.s3 {
|
||||
padding: 100px 0;
|
||||
background: url('/assets/img/about/s3.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.s4 {
|
||||
padding: 100px 0;
|
||||
background: #fff;
|
||||
|
||||
h2,
|
||||
p {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
.s5 {
|
||||
padding: 100px 0;
|
||||
background: url('/assets/img/about/s5.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
.activation-page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.s1 {
|
||||
flex-basis: 100%;
|
||||
padding: 150px 0;
|
||||
|
||||
.msgBox,
|
||||
.content {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
@extend %defaultBorderRadius;
|
||||
@include boxShadow(0 5px 10px rgba(#000, 0.5));
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.msgBox {
|
||||
padding: 10px 25px;
|
||||
|
||||
&.success {
|
||||
background: #37d200;
|
||||
}
|
||||
|
||||
&.err {
|
||||
background: tomato;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
background: #fff;
|
||||
margin-top: 30px;
|
||||
padding: 25px;
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
.agent-benefits--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/agents/agents-hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
@extend %defaultBorderRadius;
|
||||
padding: 20px;
|
||||
@include boxSizing(border-box);
|
||||
|
||||
&.not-logged-in {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-agent {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
.txtBox {
|
||||
overflow: hidden;
|
||||
|
||||
h3 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
list-style: disc;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
p {
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.links {
|
||||
margin-top: 50px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
|
||||
.item {
|
||||
flex-basis: 32%;
|
||||
overflow: hidden;
|
||||
@include boxSizing(border-box);
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
button,
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 50px 15px;
|
||||
border: none;
|
||||
background: rgba(#000, 0.05);
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
font-family: 'iranYekanR';
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
.agents--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/agents/agents-hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
@extend %defaultBorderRadius;
|
||||
padding: 20px;
|
||||
@include boxSizing(border-box);
|
||||
|
||||
&.not-logged-in {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-agent {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.showDetailsBtn {
|
||||
background: transparent;
|
||||
border: 1px solid rgba(#000, 0.2);
|
||||
@include borderRadius(4px);
|
||||
padding: 4px 16px;
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
|
||||
i {
|
||||
@extend %defaultTransition;
|
||||
color: rgba(#000, 0.5);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
border-color: $theme;
|
||||
|
||||
i {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.agentDetailsModal {
|
||||
input {
|
||||
&:disabled {
|
||||
color: rgba(#000, 0.8);
|
||||
cursor: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
.contact--page {
|
||||
background: url('/assets/img/contact/bg.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
.s1 {
|
||||
min-height: calc(100vh - 85px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 150px 0;
|
||||
|
||||
.message {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
.form_1 {
|
||||
max-width: 450px;
|
||||
@extend %defaultBoxShadow;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
|
||||
p {
|
||||
font-size: 24px;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
.email {
|
||||
direction: ltr;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.contact {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
a,
|
||||
p,
|
||||
span,
|
||||
i {
|
||||
color: #fff;
|
||||
@extend %defaultTransition;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
margin-bottom: 30px;
|
||||
|
||||
a {
|
||||
font-size: 20px;
|
||||
|
||||
span {
|
||||
direction: ltr !important;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
span,
|
||||
i {
|
||||
color: #00bfff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 20px;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
.download-details--page {
|
||||
.s1 {
|
||||
margin-top: 80px;
|
||||
|
||||
.item {
|
||||
background: #fff;
|
||||
padding: 25px;
|
||||
@extend %defaultBorderRadius;
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
|
||||
h1 {
|
||||
display: inline-block;
|
||||
font-size: 20px;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 105%;
|
||||
height: 2px;
|
||||
background: $theme;
|
||||
@include transform(translateX(2.5%) translateY(20px));
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
img {
|
||||
width: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: 50px 0;
|
||||
|
||||
.imgBox {
|
||||
flex-basis: 30%;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
order: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.ck-content {
|
||||
flex-basis: 70%;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.download {
|
||||
.title {
|
||||
text-align: right;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
|
||||
h3 {
|
||||
margin-right: 10px;
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
margin-bottom: 5px;
|
||||
|
||||
a {
|
||||
span,
|
||||
i {
|
||||
@extend %defaultTransition;
|
||||
font-weight: bold;
|
||||
|
||||
&:hover {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.zip-pass {
|
||||
p {
|
||||
color: $theme;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,244 @@
|
||||
.download--page {
|
||||
.hero {
|
||||
margin-bottom: 50px;
|
||||
|
||||
.bg {
|
||||
background-image: url('/assets/img/download/hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
padding-bottom: 50px;
|
||||
|
||||
.filters {
|
||||
background-color: rgba(#000, 0.15);
|
||||
@extend %defaultBorderRadius;
|
||||
//@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 5px;
|
||||
|
||||
li {
|
||||
margin: 5px;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
background: rgba(#000, 0.3);
|
||||
color: #fff;
|
||||
padding: 3px 15px;
|
||||
cursor: pointer;
|
||||
@include borderRadius(10px);
|
||||
@extend %defaultTransition;
|
||||
|
||||
&:hover {
|
||||
background: rgba(#000, 0.7);
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: rgba(#000, 0.7);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s2 {
|
||||
$imgSize: 180px;
|
||||
$titleMinHeight: 85px;
|
||||
$captionMinHeight: 100px;
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
background: #fff;
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
padding: 25px 15px;
|
||||
height: 100%;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
padding: 25px 15px;
|
||||
}
|
||||
|
||||
.imgBox {
|
||||
flex-basis: $imgSize;
|
||||
height: $imgSize;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
@include borderRadius(50%);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
background-color: transparent;
|
||||
@include borderRadius(0);
|
||||
height: auto;
|
||||
|
||||
img {
|
||||
@include borderRadius(0);
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: 60%;
|
||||
@include borderRadius(50%);
|
||||
|
||||
@media (max-width: 575px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.txtBox {
|
||||
flex-basis: calc(100% - #{$imgSize});
|
||||
padding-right: 15px;
|
||||
height: 100%;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
margin-top: 20px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
font-size: 18px;
|
||||
|
||||
@media (min-height: 1400px) {
|
||||
min-height: $titleMinHeight;
|
||||
}
|
||||
|
||||
b {
|
||||
color: $theme;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
padding: 0 5px;
|
||||
font-size: 13px;
|
||||
@include borderRadius(10px);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
|
||||
@media (min-width: 1400px) {
|
||||
min-height: $captionMinHeight;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.untrack {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 100px;
|
||||
|
||||
h3 {
|
||||
font-size: 25px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.latest {
|
||||
position: relative;
|
||||
padding: 35px 20px;
|
||||
background-image: linear-gradient(#8ca5db, #ba93d6);
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
padding: 50px 15px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.normal {
|
||||
top: -100%;
|
||||
}
|
||||
|
||||
.hover {
|
||||
@include transform(translateY(0));
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.normal {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@extend %defaultTransition;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
img {
|
||||
width: 35%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #5c5f61;
|
||||
padding: 0 15px;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hover {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@extend %defaultTransition;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
@include transform(translateY(100%));
|
||||
opacity: 0;
|
||||
|
||||
h2 {
|
||||
color: #fff;
|
||||
margin-bottom: 10px;
|
||||
min-height: $titleMinHeight;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #fff;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s3 {
|
||||
direction: ltr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.error--page {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
h1 {
|
||||
font-family: sans-serif;
|
||||
font-size: 60px;
|
||||
}
|
||||
|
||||
p {
|
||||
text-transform: uppercase;
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
a {
|
||||
margin-top: 20px;
|
||||
font-family: 'sahel', sans-serif;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
.FAQ--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/FAQ/hero.jpg');
|
||||
}
|
||||
|
||||
.btn {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
.q-a {
|
||||
background: #fff;
|
||||
padding: 25px 80px 25px 25px;
|
||||
@include borderRadius(5px);
|
||||
@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
padding-right: 45px;
|
||||
}
|
||||
|
||||
&.collapsed {
|
||||
h3 {
|
||||
height: 27px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
i {
|
||||
@include transform(rotate(90deg));
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
display: inline-block;
|
||||
font-size: 30px;
|
||||
color: $theme;
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: 25px;
|
||||
@extend %defaultTransition;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-bottom: 40px;
|
||||
line-height: 1.6em;
|
||||
overflow: hidden;
|
||||
@extend %defaultTransition;
|
||||
}
|
||||
|
||||
.answer {
|
||||
b {
|
||||
display: inline-block;
|
||||
color: $theme;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.submit {
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,201 @@
|
||||
.home--page {
|
||||
position: relative;
|
||||
overflow-y: auto;
|
||||
|
||||
.bg {
|
||||
width: 100%;
|
||||
height: calc(100vh - 50px);
|
||||
background-image: url('/assets/img/home/bg.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
position: fixed;
|
||||
$topOffset: 50px;
|
||||
height: calc(100vh - #{$topOffset});
|
||||
top: $topOffset;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.txtBox {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
max-width: 1000px;
|
||||
@include transform(translate(-50%, -50%));
|
||||
padding: 28px 15px;
|
||||
background: rgba(#fff, 0.5);
|
||||
backdrop-filter: blur(5px);
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
position: relative;
|
||||
$topOffset: 50px;
|
||||
height: calc(100vh - #{$topOffset});
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding-top: $topOffset;
|
||||
@include transform(translate(0, 0));
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
//align-items: center;
|
||||
|
||||
.container-fluid {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 10px;
|
||||
|
||||
.container-fluid {
|
||||
padding: 0;
|
||||
|
||||
.row {
|
||||
& > div {
|
||||
padding: 0 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.boxBg {
|
||||
height: 100%;
|
||||
padding: 15px;
|
||||
background: #dbd9da;
|
||||
|
||||
h1,
|
||||
p,
|
||||
h2 {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
p {
|
||||
@media (max-width: 575px) {
|
||||
text-align: justify;
|
||||
}
|
||||
}
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
font-size: 25px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
&.inquiry {
|
||||
$c1: #e0e6ed;
|
||||
$c2: #707070;
|
||||
|
||||
.switchBox {
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
|
||||
.switch {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
button {
|
||||
width: 50%;
|
||||
font-size: 12px;
|
||||
padding: 2px 8px;
|
||||
background: transparent;
|
||||
color: rgba($c2, 0.5);
|
||||
@extend %defaultTransition;
|
||||
cursor: pointer;
|
||||
border: 1px solid rgba($c2, 0.2);
|
||||
|
||||
&:hover {
|
||||
color: rgba($c2, 0.8);
|
||||
background: rgba($c1, 0.1);
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: rgba($c1, 1) !important;
|
||||
color: $c2;
|
||||
border-color: rgba($c2, 0.5);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.checkSerial {
|
||||
input {
|
||||
background: $c1;
|
||||
@extend %appearance;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
width: 100%;
|
||||
@include boxSizing(border-box);
|
||||
|
||||
&::placeholder {
|
||||
color: $c2;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
display: inline-block;
|
||||
background: $theme;
|
||||
color: #fff;
|
||||
border: 1px solid $theme;
|
||||
padding: 13px;
|
||||
cursor: pointer;
|
||||
@include transition(0.3s);
|
||||
width: 100%;
|
||||
@include borderRadius(0);
|
||||
|
||||
span {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
background: gray;
|
||||
border-color: gray;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.description {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.btns {
|
||||
margin-top: auto;
|
||||
|
||||
a {
|
||||
@include borderRadius(0);
|
||||
display: inline-block;
|
||||
|
||||
@media (max-width: 575px) {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
&:first-child {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
.learning--post--page {
|
||||
.s1 {
|
||||
margin-top: 100px;
|
||||
|
||||
.post {
|
||||
background: #fff;
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
|
||||
.ck-content {
|
||||
padding: 25px 15px 35px;
|
||||
}
|
||||
|
||||
video.media {
|
||||
width: 100%;
|
||||
//height: 600px;
|
||||
background: #000;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
}
|
||||
|
||||
img.media {
|
||||
width: 100%;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
.learning--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/learning/hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
.post {
|
||||
margin-bottom: 80px;
|
||||
|
||||
.txtBox {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background: #fff;
|
||||
padding: 35px 25px;
|
||||
@include boxSizing(border-box);
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
width: 120%;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
padding: 35px 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.imgBox {
|
||||
display: block;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
|
||||
&:hover {
|
||||
.imgMask {
|
||||
background-color: rgba(#000, 0.4);
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
min-height: 400px;
|
||||
|
||||
@media (max-width: 1400px) {
|
||||
//min-height: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
@include transform(translate(-50%, -50%));
|
||||
z-index: 1;
|
||||
font-size: 55px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.imgMask {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
@extend %defaultTransition;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.reverse {
|
||||
direction: ltr;
|
||||
|
||||
.txtBox {
|
||||
direction: rtl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s2 {
|
||||
direction: ltr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.lottery--page {
|
||||
background-image: url('/assets/img/lottery/lottery2.png');
|
||||
// padding-top: 200px;
|
||||
|
||||
.contentBox {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
@include transform(translateY(-50%));
|
||||
overflow: hidden;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
position: static;
|
||||
@include transform(translateY(0));
|
||||
padding-top: 200px;
|
||||
}
|
||||
|
||||
.content {
|
||||
direction: rtl;
|
||||
margin-bottom: 50px;
|
||||
|
||||
.remain-days {
|
||||
text-align: center;
|
||||
background: $theme;
|
||||
margin: -40px -20px 20px;
|
||||
padding: 20px 15px;
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-family: iranYekanB;
|
||||
font-weight: bold;
|
||||
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.winners-list {
|
||||
.title {
|
||||
margin-bottom: 30px;
|
||||
h2 {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
.representation--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/agents/representations-hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
@extend %defaultBorderRadius;
|
||||
padding: 20px;
|
||||
@include boxSizing(border-box);
|
||||
|
||||
&.not-logged-in {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-agent {
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
.txtBox {
|
||||
overflow: hidden;
|
||||
|
||||
h3 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
list-style: disc;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
p {
|
||||
a {
|
||||
color: $theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.links {
|
||||
margin-top: 50px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
|
||||
.item {
|
||||
flex-basis: 32%;
|
||||
overflow: hidden;
|
||||
@include boxSizing(border-box);
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
button,
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 50px 15px;
|
||||
border: none;
|
||||
background: rgba(#000, 0.05);
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
font-family: 'iranYekanR';
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.enroll {
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
.checkUploadModalContent {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
.repCheckBox {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.resultBox {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
border: 1px solid rgba(#000, 0.2);
|
||||
padding: 15px;
|
||||
@include boxSizing(border-box);
|
||||
opacity: 0;
|
||||
|
||||
.repInfo {
|
||||
padding: 15px;
|
||||
margin: -10px -10px;
|
||||
overflow: hidden;
|
||||
$bgColorOpacity: 0.1;
|
||||
&.accepted {
|
||||
background: rgba(green, $bgColorOpacity);
|
||||
}
|
||||
&.rejected {
|
||||
background: rgba(red, $bgColorOpacity);
|
||||
}
|
||||
&.registered,
|
||||
&.ongoing,
|
||||
&.verification {
|
||||
background: rgba(orange, $bgColorOpacity);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
text-align: right;
|
||||
|
||||
span {
|
||||
font-family: 'iranYekanR';
|
||||
color: #000;
|
||||
}
|
||||
b {
|
||||
font-family: 'iranYekanB', sans-serif;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.uploadBtn {
|
||||
margin-bottom: 30px;
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
border: 1px solid $theme;
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultTransition;
|
||||
margin-bottom: 20px;
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
i,
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
i,
|
||||
span {
|
||||
@extend %defaultTransition;
|
||||
color: $theme;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 50px;
|
||||
}
|
||||
span {
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
input {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: right;
|
||||
|
||||
b {
|
||||
display: inline-block;
|
||||
direction: ltr !important;
|
||||
}
|
||||
|
||||
&.notice {
|
||||
color: red;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.el-loading-text {
|
||||
text-align: center !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
.user-auth {
|
||||
background: url('/assets/img/auth/bg.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 150px 15px;
|
||||
$sideWidth: 250px;
|
||||
$formBoxWidth: 800px;
|
||||
|
||||
.formBox {
|
||||
width: 100%;
|
||||
max-width: $formBoxWidth;
|
||||
position: relative;
|
||||
@extend %defaultBorderRadius;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
|
||||
.side {
|
||||
width: $sideWidth;
|
||||
height: 100%;
|
||||
background: url('/assets/img/auth/formbg.jpg');
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
|
||||
span {
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.main {
|
||||
background: #fff;
|
||||
margin-right: $sideWidth;
|
||||
width: calc(#{$formBoxWidth} - #{$sideWidth});
|
||||
padding: 50px 0;
|
||||
|
||||
.form_2 {
|
||||
width: 70%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
|
||||
p {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
a {
|
||||
font-size: 14px;
|
||||
color: $theme;
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.err {
|
||||
p {
|
||||
padding-right: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
$sideHeight: 150px;
|
||||
|
||||
.side {
|
||||
width: 100%;
|
||||
height: $sideHeight;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.main {
|
||||
margin: $sideHeight auto 0;
|
||||
width: 100%;
|
||||
//height: call(100% - #{$sideHeight});
|
||||
|
||||
.form_2 {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.login {
|
||||
.formBox {
|
||||
.main {
|
||||
.form_2 {
|
||||
.formRow {
|
||||
input {
|
||||
-webkit-background-size: 16px;
|
||||
background-size: 16px;
|
||||
background-position: 95% 10px;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 38px;
|
||||
|
||||
&[name='email'] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(0,0,0,0.5)' viewBox='0 0 512 512'%3E%3Cpath d='M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM48 96h416c8.8 0 16 7.2 16 16v41.4c-21.9 18.5-53.2 44-150.6 121.3-16.9 13.4-50.2 45.7-73.4 45.3-23.2.4-56.6-31.9-73.4-45.3C85.2 197.4 53.9 171.9 32 153.4V112c0-8.8 7.2-16 16-16zm416 320H48c-8.8 0-16-7.2-16-16V195c22.8 18.7 58.8 47.6 130.7 104.7 20.5 16.4 56.7 52.5 93.3 52.3 36.4.3 72.3-35.5 93.3-52.3 71.9-57.1 107.9-86 130.7-104.7v205c0 8.8-7.2 16-16 16z'/%3E%3C/svg%3E");
|
||||
background-position: 95% 11px;
|
||||
direction: ltr;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
&[name='password'] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(0,0,0,0.5)' viewBox='0 0 448 512'%3E%3Cpath d='M224 420c-11 0-20-9-20-20v-64c0-11 9-20 20-20s20 9 20 20v64c0 11-9 20-20 20zm224-148v192c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48h16v-64C64 71.6 136-.3 224.5 0 312.9.3 384 73.1 384 161.5V224h16c26.5 0 48 21.5 48 48zM96 224h256v-64c0-70.6-57.4-128-128-128S96 89.4 96 160v64zm320 240V272c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h352c8.8 0 16-7.2 16-16z'/%3E%3C/svg%3E");
|
||||
-webkit-background-size: 15px;
|
||||
background-size: 15px;
|
||||
direction: ltr;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
&.err {
|
||||
input {
|
||||
&[name='email'] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(255,0,0,0.5)' viewBox='0 0 512 512'%3E%3Cpath d='M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM48 96h416c8.8 0 16 7.2 16 16v41.4c-21.9 18.5-53.2 44-150.6 121.3-16.9 13.4-50.2 45.7-73.4 45.3-23.2.4-56.6-31.9-73.4-45.3C85.2 197.4 53.9 171.9 32 153.4V112c0-8.8 7.2-16 16-16zm416 320H48c-8.8 0-16-7.2-16-16V195c22.8 18.7 58.8 47.6 130.7 104.7 20.5 16.4 56.7 52.5 93.3 52.3 36.4.3 72.3-35.5 93.3-52.3 71.9-57.1 107.9-86 130.7-104.7v205c0 8.8-7.2 16-16 16z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
&[name='password'] {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(255,0,0,0.5)' viewBox='0 0 448 512'%3E%3Cpath d='M224 420c-11 0-20-9-20-20v-64c0-11 9-20 20-20s20 9 20 20v64c0 11-9 20-20 20zm224-148v192c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48h16v-64C64 71.6 136-.3 224.5 0 312.9.3 384 73.1 384 161.5V224h16c26.5 0 48 21.5 48 48zM96 224h256v-64c0-70.6-57.4-128-128-128S96 89.4 96 160v64zm320 240V272c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h352c8.8 0 16-7.2 16-16z'/%3E%3C/svg%3E");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
a {
|
||||
font-size: 14px;
|
||||
color: $theme;
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.register {
|
||||
.formBox {
|
||||
.main {
|
||||
.form_2 {
|
||||
.formRow {
|
||||
input {
|
||||
padding-right: 20px;
|
||||
|
||||
&[name='email'] {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
&[name='password'] {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
&[name='mobile'],
|
||||
&[name='password_confirmation'],
|
||||
&[name='national_code'] {
|
||||
direction: ltr;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
&.err {
|
||||
input {
|
||||
&[name='email'] {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
&[name='password'] {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.addressTextArea {
|
||||
textarea {
|
||||
display: block;
|
||||
width: 95%;
|
||||
max-width: 95%;
|
||||
height: 70px;
|
||||
padding-right: 20px;
|
||||
margin-right: 2.5% !important;
|
||||
resize: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.el-select {
|
||||
.el-input__suffix {
|
||||
right: 0;
|
||||
left: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hasValidationError {
|
||||
height: 1570px !important;
|
||||
|
||||
//@media (max-width: 992px) {
|
||||
// height: 1100px !important;
|
||||
//}
|
||||
}
|
||||
}
|
||||
|
||||
&.reset-pass {
|
||||
.formBox {
|
||||
.main {
|
||||
padding: 100px 0;
|
||||
|
||||
&.hasMessage {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
.form_2 {
|
||||
.title {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
button {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
.user-dashboard {
|
||||
&.agent-guarantee-details {
|
||||
.agentActions {
|
||||
margin-bottom: 50px;
|
||||
|
||||
.statuses {
|
||||
h3 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.btns {
|
||||
@media (max-width: 992px) {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.timeLine {
|
||||
h3 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 5px;
|
||||
padding: 0 4px;
|
||||
@include borderRadius(3px);
|
||||
|
||||
span {
|
||||
display: block;
|
||||
|
||||
&:last-child {
|
||||
font-family: sans-serif;
|
||||
direction: ltr !important;
|
||||
}
|
||||
}
|
||||
|
||||
// define colors opacity
|
||||
$colorsOpacity: 0.1;
|
||||
|
||||
&.saved {
|
||||
background: rgba(gray, $colorsOpacity);
|
||||
}
|
||||
&.recieved {
|
||||
background: rgba($theme, $colorsOpacity);
|
||||
}
|
||||
&.ongoing {
|
||||
background: rgba(orange, $colorsOpacity);
|
||||
}
|
||||
&.waiting {
|
||||
background: rgba(orangered, $colorsOpacity);
|
||||
}
|
||||
&.delivered {
|
||||
background: rgba(green, $colorsOpacity);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.formDB {
|
||||
flex-basis: 100%;
|
||||
text-align: center;
|
||||
margin-top: -20px;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
@extend %userSelect;
|
||||
}
|
||||
|
||||
i,
|
||||
span {
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
color: $theme;
|
||||
}
|
||||
span {
|
||||
margin-right: 8px;
|
||||
font-family: 'iranYekanB';
|
||||
}
|
||||
}
|
||||
|
||||
.addToDraftsBtn {
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,183 @@
|
||||
.user-dashboard {
|
||||
&.agent-reports {
|
||||
.reportTypes {
|
||||
text-align: center;
|
||||
|
||||
button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.reportOptions {
|
||||
.el-form {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
|
||||
.datePickerWrapper {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
|
||||
.vpd-input-group {
|
||||
@include borderRadius(3px);
|
||||
overflow: hidden;
|
||||
|
||||
input {
|
||||
&::placeholder {
|
||||
color: rgba(#000, 0.4);
|
||||
}
|
||||
}
|
||||
}
|
||||
.vpd-icon-btn {
|
||||
padding: 12px 10px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.seprator {
|
||||
flex-basis: 100%;
|
||||
background: rgba($theme, 0.1);
|
||||
padding: 2px 8px;
|
||||
@include borderRadius(10px);
|
||||
text-align: center;
|
||||
|
||||
p {
|
||||
color: rgba(#000, 0.3);
|
||||
@extend %userSelect;
|
||||
}
|
||||
}
|
||||
|
||||
.el-form-item {
|
||||
display: block;
|
||||
flex-basis: 33%;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100% !important;
|
||||
}
|
||||
|
||||
.el-form-item__content {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
|
||||
.el-form-item__label {
|
||||
float: none !important;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.inbox {
|
||||
.selectedItem {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&.pr {
|
||||
.fromItemReceptionTransDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.toItemReceptionTransDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
}
|
||||
|
||||
&.opr {
|
||||
.selectedItem {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.pieceId {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.fromItemReceptionTransDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.toItemReceptionTransDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
}
|
||||
|
||||
&.br {
|
||||
.selectedItem {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&.gr {
|
||||
.fromDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.toDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
|
||||
.selectedItem {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
.fromRecieveDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.toRecieveDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.fromDeliverDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
.toDeliverDate {
|
||||
flex-basis: 49.75%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.reportResult {
|
||||
margin-top: 50px;
|
||||
|
||||
.infoCharts {
|
||||
text-align: center;
|
||||
|
||||
.c-tooltip-header {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.c-tooltip-body-item {
|
||||
span {
|
||||
color: #fff;
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resultList {
|
||||
.showDetailsBtn {
|
||||
background: transparent;
|
||||
border: 1px solid rgba(#000, 0.2);
|
||||
@include borderRadius(4px);
|
||||
padding: 4px 16px;
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
|
||||
i {
|
||||
@extend %defaultTransition;
|
||||
color: rgba(#000, 0.5);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
border-color: $theme;
|
||||
|
||||
i {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
.user-dashboard {
|
||||
&.agent-requests-details {
|
||||
.notes {
|
||||
margin-top: 30px;
|
||||
|
||||
h3 {
|
||||
font-family: 'iranyekanB';
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
list-style: disc;
|
||||
margin-right: 18px;
|
||||
margin-bottom: 5px;
|
||||
|
||||
p {
|
||||
font-family: 'iranYekanB';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.addPtoPrModal {
|
||||
.datePickerWrapper {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
|
||||
.vpd-main {
|
||||
.vpd-input-group {
|
||||
@include borderRadius(3px);
|
||||
overflow: hidden;
|
||||
|
||||
input {
|
||||
&::placeholder {
|
||||
color: rgba(#000, 0.4);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// vue persian dateTime picker styles
|
||||
.vpd-icon-btn {
|
||||
padding: 12px 10px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.el-form {
|
||||
.el-form-item {
|
||||
&.err {
|
||||
.el-form-item__label {
|
||||
color: red;
|
||||
}
|
||||
.errMsg {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.reportModal {
|
||||
.el-form-item__content {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
.user-dashboard {
|
||||
&.agent-requests {
|
||||
.addStuffBtn {
|
||||
cursor: pointer;
|
||||
background-color: $theme !important;
|
||||
|
||||
td {
|
||||
text-align: center !important;
|
||||
cursor: pointer;
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: transparent;
|
||||
background: transparent;
|
||||
|
||||
span {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
span,
|
||||
i {
|
||||
color: #fff;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.search {
|
||||
&.success {
|
||||
input {
|
||||
border-color: green;
|
||||
@include boxShadow(0px 4px 6px rgba(green, 0.3));
|
||||
}
|
||||
}
|
||||
&.error {
|
||||
input {
|
||||
border-color: red;
|
||||
@include boxShadow(0px 4px 6px rgba(red, 0.2));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
.user-dashboard {
|
||||
&.announcements {
|
||||
.item {
|
||||
@include boxShadow(0 4px 8px rgba(#000, 0.1));
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultTransition;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
&.active {
|
||||
background: rgba(green, 0.1);
|
||||
}
|
||||
|
||||
&.unread {
|
||||
background: rgba(orange, 0.1);
|
||||
}
|
||||
|
||||
div {
|
||||
border-top: none !important;
|
||||
background: transparent !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
.el-collapse-item__content {
|
||||
background: rgba($theme, 0.05) !important;
|
||||
@extend %defaultBorderRadius;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
.user-dashboard {
|
||||
&.factor {
|
||||
.factor {
|
||||
.table {
|
||||
table {
|
||||
min-width: 1000px;
|
||||
}
|
||||
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
.user-dashboard {
|
||||
&.guarantee-details {
|
||||
hr {
|
||||
width: 70%;
|
||||
margin: 50px auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
.user-dashboard {
|
||||
&.guarantee {
|
||||
.search {
|
||||
&.success {
|
||||
input {
|
||||
border-color: green;
|
||||
@include boxShadow(0px 4px 6px rgba(green, 0.3));
|
||||
}
|
||||
}
|
||||
&.error {
|
||||
input {
|
||||
border-color: red;
|
||||
@include boxShadow(0px 4px 6px rgba(red, 0.2));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.switchBtns {
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
.user-dashboard {
|
||||
overflow: visible;
|
||||
|
||||
.panel {
|
||||
background: #fff;
|
||||
min-height: calc(100vh - 300px);
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
@include transform(translateY(-110px));
|
||||
z-index: 2;
|
||||
padding: 15px;
|
||||
margin-bottom: 100px;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
@include transform(translateY(0));
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
margin-left: -30px;
|
||||
margin-right: -30px;
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
@include transform(translate(15px, -55px));
|
||||
|
||||
p {
|
||||
color: #fff;
|
||||
font-family: 'iranYekanB';
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
|
||||
@media (max-width: 992px) {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.notice {
|
||||
display: none;
|
||||
color: red;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
|
||||
@media (max-width: 1400px) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
.formRow {
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form_3 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.userInfo {
|
||||
display: flex;
|
||||
flex-basis: 100%;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
|
||||
.formRow {
|
||||
flex-basis: 33%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.buttons {
|
||||
label {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.paymentFactorBtn {
|
||||
strong {
|
||||
font-family: 'iranYekanB';
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
.user-dashboard-layout {
|
||||
.topBG {
|
||||
height: 200px;
|
||||
background: $theme;
|
||||
position: relative;
|
||||
|
||||
.user-name {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 18px;
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
max-width: 250px;
|
||||
position: relative;
|
||||
padding-right: 35px;
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
a,
|
||||
span,
|
||||
i {
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
i {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 10px;
|
||||
@include transform(translateY(-50%));
|
||||
}
|
||||
|
||||
span {
|
||||
font-family: 'iranYekanB', sans-serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
height: 60px;
|
||||
|
||||
.user-name {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.page {
|
||||
min-height: calc(100vh - 235px);
|
||||
|
||||
@media (max-width: 992px) {
|
||||
min-height: calc(100vh - 150px);
|
||||
}
|
||||
}
|
||||
|
||||
.user-aside {
|
||||
@media (max-width: 992px) {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
ul {
|
||||
display: inline-block;
|
||||
min-height: 600px;
|
||||
padding-right: 5px;
|
||||
padding-top: 5px;
|
||||
|
||||
li {
|
||||
@extend %defaultTransition;
|
||||
border-top-left-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
cursor: pointer;
|
||||
margin-bottom: 2px;
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
&.username {
|
||||
display: none;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding-right: 30px;
|
||||
|
||||
i {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 10px;
|
||||
@include transform(translateY(-50%));
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
font-family: 'iranYekanB', sans-serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
a {
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
a,
|
||||
span,
|
||||
i {
|
||||
display: inline-block;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-block;
|
||||
$size: 20px;
|
||||
width: $size;
|
||||
height: $size;
|
||||
text-align: center;
|
||||
font-family: 'sans-serif';
|
||||
line-height: $size;
|
||||
font-size: 12px;
|
||||
color: #fff;
|
||||
background: red;
|
||||
@include borderRadius(50%);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
min-height: auto;
|
||||
max-width: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding: 3px !important;
|
||||
|
||||
li {
|
||||
margin: 0 10px !important;
|
||||
padding: 0 !important;
|
||||
|
||||
a {
|
||||
span,
|
||||
i {
|
||||
color: #000 !important;
|
||||
font-size: 16px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@include borderRadius(5px);
|
||||
|
||||
&.username {
|
||||
display: block;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.seprator {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
@extend %userSelect;
|
||||
|
||||
.line {
|
||||
flex-grow: 1;
|
||||
height: 1px;
|
||||
background: $darkGray;
|
||||
opacity: 0.3;
|
||||
margin-right: 5px;
|
||||
@include borderRadius(4px);
|
||||
}
|
||||
|
||||
.txt {
|
||||
span {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
.line {
|
||||
margin-right: 0;
|
||||
margin-top: 2px;
|
||||
opacity: 0.15;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
.user-dashboard {
|
||||
&.post-address {
|
||||
h2 {
|
||||
text-align: center;
|
||||
margin-top: 50px;
|
||||
color: $theme;
|
||||
}
|
||||
|
||||
.el-dialog {
|
||||
.form_3 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.formRow {
|
||||
flex-basis: 33.33%;
|
||||
}
|
||||
|
||||
.title {
|
||||
flex-basis: 100%;
|
||||
margin-bottom: 30px;
|
||||
|
||||
p {
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
font-family: 'iranYekanB';
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
flex-basis: 100%;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
button {
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.buttons {
|
||||
text-align: center;
|
||||
margin-top: 50px;
|
||||
|
||||
button {
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
.user-dashboard {
|
||||
&.post-receipt {
|
||||
.receipt {
|
||||
border: 1px solid rgba(#000, 0.5);
|
||||
|
||||
.receipt-head {
|
||||
background-color: rgba(#c0c4d1, 1);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
|
||||
svg {
|
||||
width: 100px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
@include transform(translateY(-50%));
|
||||
|
||||
@media (max-width: 992px) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
path,
|
||||
rect {
|
||||
fill: #707070;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
font-family: 'iranYekanB';
|
||||
padding: 15px;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
||||
.receipt-body {
|
||||
.form_3 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
border: none;
|
||||
|
||||
.formRow {
|
||||
flex-basis: 50%;
|
||||
}
|
||||
|
||||
.title {
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
flex-basis: 97.5%;
|
||||
|
||||
p {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.receipt-code {
|
||||
margin-bottom: 50px;
|
||||
|
||||
hr {
|
||||
width: 50%;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
p {
|
||||
padding: 20px;
|
||||
background-color: rgba(#e0e6ed, 1);
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
|
||||
span {
|
||||
font-size: 20px;
|
||||
font-family: 'iranYekanB', sans-serif;
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.print-btn {
|
||||
text-align: left;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.box-face-receipt,
|
||||
.box-inner-receipt {
|
||||
margin-top: 100px;
|
||||
|
||||
.title {
|
||||
width: 95%;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
padding: 10px;
|
||||
background: #e0e6ed;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
p {
|
||||
font-family: 'iranYekanB';
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-inner-receipt {
|
||||
.logo-side {
|
||||
@media (max-width: 992px) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,313 @@
|
||||
.user-dashboard {
|
||||
&.post {
|
||||
.form_3 {
|
||||
.formDB {
|
||||
flex-basis: 100%;
|
||||
text-align: center;
|
||||
margin-top: -20px;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
@extend %userSelect;
|
||||
}
|
||||
|
||||
i,
|
||||
span {
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
color: $theme;
|
||||
}
|
||||
span {
|
||||
margin-right: 8px;
|
||||
font-family: 'iranYekanB';
|
||||
}
|
||||
}
|
||||
|
||||
.formRow {
|
||||
.el-select {
|
||||
width: 100%;
|
||||
|
||||
.el-input__inner {
|
||||
@include borderRadius(0);
|
||||
}
|
||||
|
||||
.el-input__suffix {
|
||||
right: 0;
|
||||
left: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
flex-basis: 100%;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#quantity:disabled {
|
||||
cursor: not-allowed;
|
||||
color: rgba(#000, 0.1) !important;
|
||||
}
|
||||
|
||||
#addBtn {
|
||||
&:focus {
|
||||
outline: 1px solid #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.add-list {
|
||||
margin-top: 50px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.terms {
|
||||
margin-top: 50px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form {
|
||||
padding: 0;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
|
||||
.formRow {
|
||||
padding-right: 0;
|
||||
|
||||
label {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ol {
|
||||
margin-top: 20px;
|
||||
list-style: decimal;
|
||||
list-style-position: inside;
|
||||
margin-bottom: 15px;
|
||||
|
||||
li {
|
||||
margin-bottom: 5px;
|
||||
|
||||
p {
|
||||
display: inline-block;
|
||||
color: rgba(#000, 1) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.agents {
|
||||
.el-select {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
|
||||
.el-input__inner {
|
||||
width: 100%;
|
||||
@include borderRadius(4px);
|
||||
border: 1px solid rgba(#000, 0.2);
|
||||
}
|
||||
|
||||
.el-input__suffix {
|
||||
right: 0;
|
||||
left: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 8px 30px;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
button {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.el-select {
|
||||
max-width: 575px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-address {
|
||||
margin-top: 50px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.no-address {
|
||||
color: $red;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
button {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.formError {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.addStuffBtn {
|
||||
cursor: pointer;
|
||||
background-color: $theme !important;
|
||||
|
||||
td {
|
||||
text-align: center !important;
|
||||
cursor: pointer;
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: transparent;
|
||||
background: transparent;
|
||||
|
||||
span {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
span,
|
||||
i {
|
||||
color: #fff;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.chooseDataBase {
|
||||
margin-bottom: 50px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.brandsList {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: stretch;
|
||||
|
||||
.brand {
|
||||
flex-basis: 50%;
|
||||
max-width: 250px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
|
||||
&.selected {
|
||||
button {
|
||||
background: $theme;
|
||||
|
||||
img {
|
||||
opacity: 0;
|
||||
|
||||
&.alt {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
i,
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
border: 1px solid $theme;
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
@extend %defaultBorderRadius;
|
||||
background: transparent;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
|
||||
&:hover {
|
||||
background: $theme;
|
||||
|
||||
img {
|
||||
opacity: 0;
|
||||
|
||||
&.alt {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
i,
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
@extend %defaultTransition;
|
||||
|
||||
&.alt {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
display: block;
|
||||
font-size: 50px;
|
||||
margin: 10px 0;
|
||||
color: $theme;
|
||||
@extend %defaultTransition;
|
||||
}
|
||||
span {
|
||||
color: $theme;
|
||||
font-family: 'iranYekanB';
|
||||
@extend %defaultTransition;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btnRow {
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
|
||||
button {
|
||||
margin-top: 20px;
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
color: #fff;
|
||||
font-family: 'iranYekanR';
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
.user-dashboard {
|
||||
&.profile {
|
||||
.form_3 {
|
||||
width: 100%;
|
||||
|
||||
#arpa_businessCode {
|
||||
background: $theme;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.cs {
|
||||
color: rgba(red, 0.7);
|
||||
font-size: 12px;
|
||||
margin-right: 3px;
|
||||
|
||||
&.confirmed {
|
||||
color: rgba(green, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
.el-select {
|
||||
width: 100%;
|
||||
|
||||
.el-input__inner {
|
||||
@include borderRadius(0);
|
||||
}
|
||||
|
||||
.el-input__suffix {
|
||||
right: 0;
|
||||
left: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
.user-dashboard {
|
||||
&.ticket-messenger {
|
||||
.messenger {
|
||||
//height: calc(100vh - 460px) !important;
|
||||
|
||||
.messages {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
.user-dashboard {
|
||||
&.tickets {
|
||||
.rowButtons {
|
||||
a {
|
||||
position: relative;
|
||||
|
||||
span {
|
||||
background: transparent !important;
|
||||
color: #fff !important;
|
||||
display: inline-block !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
i {
|
||||
$size: 25px;
|
||||
width: $size;
|
||||
height: $size;
|
||||
line-height: $size;
|
||||
text-align: center;
|
||||
font-family: sans-serif;
|
||||
position: absolute;
|
||||
top: -8px;
|
||||
right: -10px;
|
||||
font-size: 12px;
|
||||
background: red;
|
||||
color: #fff;
|
||||
@include borderRadius(50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
.user-dashboard {
|
||||
&.verify {
|
||||
.verify-labels {
|
||||
cursor: auto !important;
|
||||
|
||||
span {
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
@extend %defaultTransition;
|
||||
color: $theme;
|
||||
|
||||
&:hover {
|
||||
color: $theme_darker;
|
||||
}
|
||||
|
||||
&.countdown {
|
||||
color: gray;
|
||||
cursor: not-allowed;
|
||||
|
||||
&:hover {
|
||||
color: gray;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
.warranty-terms--page {
|
||||
.hero {
|
||||
.bg {
|
||||
background-image: url('/assets/img/warranty-terms/hero.jpg');
|
||||
}
|
||||
}
|
||||
|
||||
.s1 {
|
||||
.term {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
background: #fff;
|
||||
height: 100%;
|
||||
@extend %defaultBorderRadius;
|
||||
@extend %defaultBoxShadow;
|
||||
overflow: hidden;
|
||||
|
||||
.imgBox {
|
||||
flex-basis: 30%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) and (max-width: 1400px) {
|
||||
flex-basis: 40%;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) and (max-width: 1200px) {
|
||||
flex-basis: 20%;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.txtBox {
|
||||
flex-basis: 70%;
|
||||
padding: 15px;
|
||||
|
||||
@media (min-width: 1200px) and (max-width: 1400px) {
|
||||
flex-basis: 60%;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
color: $theme;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.s2 {
|
||||
text-align: center;
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.ck-content {
|
||||
border: 1px solid rgba(#000, 0.1);
|
||||
padding: 15px;
|
||||
@extend %defaultBorderRadius;
|
||||
}
|
||||
|
||||
.submit {
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user