discourse/app/assets/stylesheets/wizard.scss

202 lines
3.4 KiB
SCSS
Raw Normal View History

@import "vendor/normalize";
@import "vendor/font_awesome/font-awesome";
@import "vendor/select2";
body.wizard {
2016-08-25 13:14:56 -04:00
background-color: #fff;
background-image: url('/images/wizard/bubbles.png');
background-repeat: repeat;
background-position: left top;
2016-08-25 13:14:56 -04:00
color: #444;
line-height: 1.4em;
}
.select {
width: 400px;
}
.wizard-column {
background-color: white;
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
box-sizing: border-box;
2016-08-25 13:14:56 -04:00
margin: 1.5em auto;
padding: 0;
max-width: 700px;
min-width: 280px;
width: 100%;
border: 1px solid #ccc;
.wizard-column-contents {
2016-08-25 13:14:56 -04:00
padding: 1.2em;
h1 {
2016-08-25 13:14:56 -04:00
margin: 0 0 1em 0;
}
}
.wizard-step-description {
margin-bottom: 2em;
}
.wizard-footer {
border-top: 1px solid #ccc;
background-color: #eee;
padding: 0.5em;
img.logo {
height: 30px;
}
}
.wizard-progress {
.text {
font-size: 0.8em;
}
2016-08-25 13:14:56 -04:00
.bar-container {
border: 1px solid #ff6600;
border-radius: 3px;
height: 0.5em;
width: 15em;
.bar-contents {
background-color: #ff6600;
width: 0;
height: 0.5em;
transition: width .3s;
}
}
}
.wizard-step-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
button.wizard-btn {
border-radius: 2px;
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
font-size: 1.0em;
background-color: #6699ff;
color: white;
border: 0px;
padding: 0.5em;
outline: 0;
transition: background-color .3s;
margin-right: 0.5em;
2016-08-25 13:14:56 -04:00
&:hover {
background-color: #80B3FF;
}
&:active {
background-color: #4D80E6;
}
&:disabled {
background-color: #000167;
}
i.fa-chevron-right {
margin-left: 0.25em;
font-size: 0.8em;
}
i.fa-chevron-left {
margin-right: 0.25em;
font-size: 0.8em;
}
}
button.wizard-btn.next {
min-width: 70px;
i.fa-chevron-right {
margin-left: 0.25em;
font-size: 0.8em;
}
}
button.wizard-btn.back {
background-color: #fff;
color: #333;
box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
&:hover {
background-color: #eee;
}
&:active {
background-color: #ddd;
}
&:disabled {
background-color: #ccc;
}
}
button.wizard-btn:last-child {
margin-right: 0;
}
button.wizard-btn.done {
background-color: #33B333;
&:hover {
background-color: #4DCD4D;
}
&:active {
background-color: #66E666;
}
&:disabled {
background-color: #006700;
}
}
2016-08-25 13:14:56 -04:00
}
.wizard-field {
label .label-value {
font-weight: bold;
}
.input-area {
margin-top: 0.5em;
}
.field-error-description {
color: red;
font-weight: bold;
}
.field-description {
color: #999;
margin-top: 0.5em;
}
2016-08-25 13:14:56 -04:00
&.text-field {
input {
width: 100%;
font-size: 1.2em;
padding: 6px;
border: 1px solid #ccc;
transition: border-color .5s;
outline: none;
}
&.invalid {
input {
padding: 3px;
border: 4px solid red;
border-radius: 3px;
}
}
}
margin-bottom: 2em;
}
}