mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
WIP/ Feature :Register wizard coding style
This commit is contained in:
125
client/src/style/pages/register-wizard-page.scss
Normal file
125
client/src/style/pages/register-wizard-page.scss
Normal file
@@ -0,0 +1,125 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
// Register Left Sidebar
|
||||
.wizard-left-side {
|
||||
position: fixed;
|
||||
background: #778cab;
|
||||
overflow: auto;
|
||||
z-index: 1;
|
||||
height: 100%;
|
||||
max-width: 25%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
color: #ffffff;
|
||||
padding: 25px;
|
||||
margin: 0px auto;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
.content-logo {
|
||||
margin-bottom: 45px;
|
||||
}
|
||||
.content-title {
|
||||
font-size: 25px;
|
||||
font-weight: 700;
|
||||
line-height: normal;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
.content-text {
|
||||
font-size: 14px;
|
||||
}
|
||||
.content-org {
|
||||
font-size: 14px;
|
||||
|
||||
span > a {
|
||||
text-decoration: underline;
|
||||
color: #ffffff;
|
||||
margin-left: 5px;
|
||||
}
|
||||
span ::after {
|
||||
border-top: 2px solid #707070;
|
||||
}
|
||||
}
|
||||
.content-contact {
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #ffffff;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.wizard-right-side {
|
||||
padding-left: 25%;
|
||||
}
|
||||
|
||||
// Register Wizard Steps
|
||||
.wizard-container {
|
||||
width: 80%;
|
||||
margin: 60px auto;
|
||||
|
||||
.wizard-wrapper li {
|
||||
position: relative;
|
||||
list-style-type: none;
|
||||
width: 25%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
font-size: 15px;
|
||||
}
|
||||
.wizard-wrapper li::before {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
content: '';
|
||||
line-height: 30px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin: 0 auto 10px auto;
|
||||
border-radius: 50%;
|
||||
background-color: #75859c;
|
||||
}
|
||||
.wizard-wrapper li::after {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
content: '';
|
||||
position: absolute;
|
||||
background-color: #75859c;
|
||||
top: 6px;
|
||||
left: -50%;
|
||||
z-index: -1;
|
||||
}
|
||||
.wizard-wrapper li:first-child::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wizard-wrapper > li.complete::before {
|
||||
background-color: #75859c;
|
||||
}
|
||||
|
||||
.wizard-wrapper > li.complete ~ li::before {
|
||||
background: #ebebeb;
|
||||
}
|
||||
|
||||
.wizard-wrapper > li.complete ~ li::after {
|
||||
background: #ebebeb;
|
||||
}
|
||||
.wizard-wrapper > li.complete p.wizard-info {
|
||||
color: #004dd0;
|
||||
}
|
||||
}
|
||||
|
||||
// @import './billing.scss';
|
||||
|
||||
//Register Subscription form
|
||||
.register-subscription-form {
|
||||
padding-top: 50px;
|
||||
}
|
||||
Reference in New Issue
Block a user