mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-12-19 04:12:04 +03:00
113 lines
2.3 KiB
SCSS
113 lines
2.3 KiB
SCSS
/*
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
@import '../../../../reset';
|
|
@import '../../../../vars';
|
|
@import '../../../../components/button';
|
|
@import '../../../../components/forms';
|
|
|
|
.sitekey-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 90%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: content-box;
|
|
background-color: $white;
|
|
margin: auto;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.form__title-flex-container {
|
|
display: flex;
|
|
width: 100%;
|
|
border-bottom: 0.1px solid $light-grey;
|
|
}
|
|
|
|
.form__title {
|
|
padding-left: 10px;
|
|
font-size: 1rem;
|
|
padding: 0.75rem 1.25rem;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
width: 100%;
|
|
border-bottom: 0.1px solid $light-grey;
|
|
}
|
|
|
|
.sitekey-form__label {
|
|
@include form-label;
|
|
}
|
|
|
|
.sitekey-form__input {
|
|
@include form-input;
|
|
width: 100%;
|
|
}
|
|
|
|
// level styling
|
|
.sitekey__level-container {
|
|
width: $form-content-width;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.sitekey__level-title {
|
|
margin-bottom: 10px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.sitekey-form__level-label {
|
|
@include form-label;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.sitekey-form__level-name {
|
|
@include form-label;
|
|
display: block;
|
|
}
|
|
|
|
.sitekey-form__level-input {
|
|
@include form-input;
|
|
flex: 2;
|
|
}
|
|
|
|
.sitekey-form__level-add-level-button {
|
|
@include violet-button;
|
|
}
|
|
|
|
.sitekey-form__level-add-level-button:hover {
|
|
@include violet-button-hover;
|
|
}
|
|
|
|
.sitekey-form__level-label--hidden {
|
|
@include form-label;
|
|
color: $white;
|
|
flex: 1;
|
|
}
|
|
|
|
// level styling ends
|
|
|
|
.sitekey-form__submit {
|
|
@include violet-button;
|
|
display: block;
|
|
margin-top: 50px;
|
|
width: $form-content-width;
|
|
width: 90%;
|
|
}
|
|
|
|
.sitekey-form__submit:hover {
|
|
@include violet-button-hover;
|
|
}
|