Init(Core): Change repo
This commit is contained in:
63
public/assets/scss/custom/pages/_authentication.scss
Normal file
63
public/assets/scss/custom/pages/_authentication.scss
Normal file
@@ -0,0 +1,63 @@
|
||||
|
||||
|
||||
//
|
||||
// authentication.scss
|
||||
//
|
||||
|
||||
|
||||
// authentication home icon
|
||||
.home-btn {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 25px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bg-login{
|
||||
background-image: url(../images/login-img.png);
|
||||
padding: 60px 0px;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
position: relative;
|
||||
border-radius: 0px 0px 50% 50%;
|
||||
}
|
||||
|
||||
.bg-login-overlay{
|
||||
position: absolute;
|
||||
background: $bg-gradient;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 0px 0px 50% 50%;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
|
||||
.account-pages {
|
||||
.logo-admin {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
left: 0;
|
||||
margin: 0px auto;
|
||||
width: 74px;
|
||||
height: 74px;
|
||||
line-height: 74px;
|
||||
background: $card-bg;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
box-shadow: $box-shadow;
|
||||
}
|
||||
}
|
||||
|
||||
// error page
|
||||
|
||||
.error-page{
|
||||
text-transform: uppercase;
|
||||
font-size: 60px;
|
||||
line-height: .7;
|
||||
position: relative;
|
||||
}
|
||||
20
public/assets/scss/custom/pages/_coming-soon.scss
Normal file
20
public/assets/scss/custom/pages/_coming-soon.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// coming-soon.scss
|
||||
//
|
||||
|
||||
.counter-number {
|
||||
font-size: 32px;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-align: center;
|
||||
span {
|
||||
font-size: 16px;
|
||||
font-weight: $font-weight-normal;
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.coming-box {
|
||||
float: left;
|
||||
width: 25%;
|
||||
}
|
||||
209
public/assets/scss/custom/pages/_email.scss
Normal file
209
public/assets/scss/custom/pages/_email.scss
Normal file
@@ -0,0 +1,209 @@
|
||||
/* ==============
|
||||
Email
|
||||
===================*/
|
||||
.email-leftbar {
|
||||
width: 236px;
|
||||
float: right;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.email-rightbar {
|
||||
margin-right: 260px;
|
||||
}
|
||||
|
||||
.chat-user-box {
|
||||
p.user-title {
|
||||
color: $dark;
|
||||
font-weight: 500;
|
||||
}
|
||||
p {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.email-leftbar {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.email-rightbar {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.mail-list {
|
||||
a {
|
||||
display: block;
|
||||
color: $gray-600;
|
||||
line-height: 24px;
|
||||
padding: 8px 5px;
|
||||
&.active {
|
||||
color: $danger;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.message-list {
|
||||
display: block;
|
||||
padding-right: 0;
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
display: block;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
cursor: default;
|
||||
transition-duration: .3s;
|
||||
|
||||
a{
|
||||
color: $gray-600;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: $gray-300;
|
||||
transition-duration: .05s;
|
||||
}
|
||||
|
||||
.col-mail {
|
||||
float: right;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.col-mail-1 {
|
||||
width: 320px;
|
||||
|
||||
.star-toggle,
|
||||
.checkbox-wrapper-mail,
|
||||
.dot {
|
||||
display: block;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.dot {
|
||||
border: 4px solid transparent;
|
||||
border-radius: 100px;
|
||||
margin: 22px 26px 0;
|
||||
height: 0;
|
||||
width: 0;
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.checkbox-wrapper-mail {
|
||||
margin: 15px 20px 0 10px;
|
||||
}
|
||||
|
||||
.star-toggle {
|
||||
margin-top: 18px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.title {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 110px;
|
||||
left: 0;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.col-mail-2 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 320px;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
|
||||
.subject,
|
||||
.date {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.subject {
|
||||
right: 0;
|
||||
left: 200px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.date {
|
||||
left: 0;
|
||||
width: 170px;
|
||||
padding-right: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active,
|
||||
&.active:hover {
|
||||
box-shadow: inset -3px 0 0 $primary;
|
||||
}
|
||||
|
||||
|
||||
&.unread {
|
||||
background-color: $gray-300;
|
||||
font-weight: 500;
|
||||
color: darken($dark,5%);
|
||||
a{
|
||||
color: darken($dark,5%);
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.checkbox-wrapper-mail {
|
||||
cursor: pointer;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
box-shadow: inset 0 0 0 1px $gray-400;
|
||||
border-radius: 1px;
|
||||
|
||||
input {
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
input:checked ~ label {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
label {
|
||||
position: absolute;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
right: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0;
|
||||
margin-bottom: 0;
|
||||
transition-duration: .05s;
|
||||
top: 0;
|
||||
&:before {
|
||||
content: "\F12C";
|
||||
font-family: "Material Design Icons";
|
||||
top: 1px;
|
||||
height: 20px;
|
||||
color: darken($dark,5%);
|
||||
width: 20px;
|
||||
position: absolute;
|
||||
margin-top: -16px;
|
||||
right: 3.5px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.message-list li .col-mail-1 {
|
||||
width: 200px;
|
||||
}
|
||||
}
|
||||
24
public/assets/scss/custom/pages/_extras-pages.scss
Normal file
24
public/assets/scss/custom/pages/_extras-pages.scss
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// Extras pages.scss
|
||||
//
|
||||
|
||||
|
||||
// pricing
|
||||
|
||||
|
||||
.plan-box{
|
||||
.plan-btn{
|
||||
position: relative;
|
||||
|
||||
&::before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: $gray-300;
|
||||
right: 0px;
|
||||
left: 0px;
|
||||
top: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
97
public/assets/scss/custom/pages/_timeline.scss
Normal file
97
public/assets/scss/custom/pages/_timeline.scss
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// timeline.scss
|
||||
//
|
||||
|
||||
/************** Horizontal timeline **************/
|
||||
|
||||
.timeline-box {
|
||||
padding: 0px !important;
|
||||
position: relative;
|
||||
.item-lable {
|
||||
width: 100px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
margin: 0 auto;
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
top: -20px;
|
||||
z-index: 1;
|
||||
p{
|
||||
line-height: inherit;
|
||||
}
|
||||
}
|
||||
.timeline-spacing {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
.dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 100px;
|
||||
margin: 0px auto;
|
||||
position: relative;
|
||||
top: -6px;
|
||||
z-index: 1;
|
||||
}
|
||||
.timeline-line {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
height: 3px;
|
||||
border-top: 3px solid $gray-200;
|
||||
}
|
||||
.vertical-line {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
.wrapper-line {
|
||||
width: 2px;
|
||||
height: 50px;
|
||||
background-color: $gray-200;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-count .row:first-child .timeline-box:first-child .timeline-line:before {
|
||||
content: '';
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 100px;
|
||||
background: $gray-200;
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
}
|
||||
|
||||
.timeline-count .row:last-child .timeline-box:last-child .timeline-line,
|
||||
.timeline-count .row:first-child .timeline-box:first-child .timeline-line {
|
||||
border-top: 3px solid $gray-200 !important;
|
||||
}
|
||||
|
||||
.timeline-count .row:last-child .timeline-box:last-child:before {
|
||||
content: unset !important;
|
||||
}
|
||||
|
||||
.timeline-count .row:nth-child(odd) .timeline-box:last-child:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 30px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-left: 3px solid $gray-200;
|
||||
}
|
||||
|
||||
.timeline-count .row:nth-child(even) .timeline-box:last-child:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 30px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-right: 3px solid $gray-200;
|
||||
}
|
||||
|
||||
.timeline-count .row:nth-child(even) {
|
||||
direction: ltr;
|
||||
.timeline-box {
|
||||
direction: rtl;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user