mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-12-19 04:12:04 +03:00
326 lines
5.1 KiB
SCSS
326 lines
5.1 KiB
SCSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--green: #5cad66;
|
||
|
--violet: #800080;
|
||
|
--backdrop: #f0f0f0;
|
||
|
--light-text: rgba(255, 255, 255, 0.87);
|
||
|
--secondary-backdrop: #2b2c30;
|
||
|
--light-grey: rgba(0, 0, 0, 0.125);
|
||
|
}
|
||
|
|
||
|
.secondary-menu {
|
||
|
position: fixed;
|
||
|
width: 14%;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
height: 100%;
|
||
|
overflow: auto;
|
||
|
|
||
|
background-color: var(--secondary-backdrop);
|
||
|
color: var(--light-text);
|
||
|
}
|
||
|
|
||
|
.secondary-menu__heading {
|
||
|
margin: auto;
|
||
|
padding: 20px 5px;
|
||
|
display: flex;
|
||
|
}
|
||
|
.secondary-menu__heading:hover {
|
||
|
color: var(--green);
|
||
|
cursor: grab;
|
||
|
}
|
||
|
|
||
|
.secondary-menu__logo {
|
||
|
width: 70px;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.secondary-menu__brand-name {
|
||
|
display: inline-block;
|
||
|
margin: auto;
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.secondary-menu__item {
|
||
|
margin: auto;
|
||
|
padding: 20px 25px;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.secondary-menu__icon {
|
||
|
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%)
|
||
|
contrast(103%);
|
||
|
opacity: 0.8;
|
||
|
width: 1rem;
|
||
|
margin: auto;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.secondary-menu__item-name {
|
||
|
display: inline-block;
|
||
|
margin: auto;
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
.secondary-menu__section-partition {
|
||
|
border-bottom: 1px solid var(--light-text);
|
||
|
margin: auto;
|
||
|
max-width: 70%;
|
||
|
list-style: none;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
.secondary-menu__item-link:hover {
|
||
|
color: var(--green);
|
||
|
cursor: grab;
|
||
|
filter: invert(58%) sepia(60%) saturate(331%) hue-rotate(76deg)
|
||
|
brightness(91%) contrast(92%);
|
||
|
}
|
||
|
|
||
|
.secondary-menu__item-link {
|
||
|
color: inherit;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
left: 14%;
|
||
|
bottom: 0;
|
||
|
background-color: var(--backdrop);
|
||
|
}
|
||
|
|
||
|
.task-bar {
|
||
|
display: flex;
|
||
|
padding: 0px;
|
||
|
margin: 0px;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.task-bar__action {
|
||
|
display: inline-block;
|
||
|
padding: 10px 0px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.task-bar__spacer {
|
||
|
min-width: 250px;
|
||
|
flex: 6;
|
||
|
}
|
||
|
|
||
|
.task-bar__icon {
|
||
|
opacity: 0.8;
|
||
|
width: 1.5rem;
|
||
|
margin: auto 20px;
|
||
|
}
|
||
|
|
||
|
.task-bar__icon:hover {
|
||
|
cursor: grab;
|
||
|
}
|
||
|
|
||
|
.main-menu {
|
||
|
display: flex;
|
||
|
flex-grow: 0;
|
||
|
padding-top: 20px;
|
||
|
padding-left: 10px;
|
||
|
}
|
||
|
|
||
|
.main-menu__item {
|
||
|
list-style: none;
|
||
|
background-color: #c3c3c3;
|
||
|
flex: 2;
|
||
|
text-align: center;
|
||
|
vertical-align: middle;
|
||
|
margin: auto 20px;
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
.main-menu__item--spacer {
|
||
|
list-style: none;
|
||
|
flex: 3;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.main-menu__item:hover {
|
||
|
background-color: grey;
|
||
|
cursor: grab;
|
||
|
}
|
||
|
|
||
|
.main-menu__item:last-child {
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
flex: 2;
|
||
|
border: none;
|
||
|
background-color: unset;
|
||
|
}
|
||
|
|
||
|
.main-menu__item:last-child:hover {
|
||
|
cursor: unset;
|
||
|
background-color: unset;
|
||
|
}
|
||
|
|
||
|
.main-menu__add-site {
|
||
|
display: inline-block;
|
||
|
background-color: var(--violet);
|
||
|
color: white;
|
||
|
font-weight: 500;
|
||
|
font-size: 16px;
|
||
|
padding: 10px 15px;
|
||
|
|
||
|
border-radius: 5px;
|
||
|
border: 1px grey solid;
|
||
|
min-height: 45px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.main-menu__add-site:hover {
|
||
|
background-color: var(--violet);
|
||
|
cursor: grab;
|
||
|
transform: translateY(-5px);
|
||
|
}
|
||
|
|
||
|
.help-text {
|
||
|
border-radius: 4px;
|
||
|
box-shadow: var(--secondary-backdrop) 0px 2px 6px 0px;
|
||
|
min-width: 70%;
|
||
|
max-width: 80%;
|
||
|
min-height: 70px;
|
||
|
display: flex;
|
||
|
margin-left: 15px;
|
||
|
margin-top: 40px;
|
||
|
}
|
||
|
|
||
|
.help-text__serial-num {
|
||
|
display: inline-flex;
|
||
|
background-color: var(--violet);
|
||
|
color: var(--light-text);
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
border-radius: 50%;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.help-text__instructions {
|
||
|
display: inline-block;
|
||
|
list-style: none;
|
||
|
font-size: 19px;
|
||
|
font-weight: 500;
|
||
|
padding: 10px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.inner-container {
|
||
|
display: flex;
|
||
|
box-sizing: border-box;
|
||
|
max-width: 50%;
|
||
|
margin: 50px auto;
|
||
|
border-radius: 5px;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.sitekey-form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 90%;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
box-sizing: content-box;
|
||
|
background-color: #fff;
|
||
|
margin: auto;
|
||
|
padding-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__title-flex-container {
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
border-bottom: 0.1px solid var(--light-grey);
|
||
|
}
|
||
|
|
||
|
.sitekey-form__title {
|
||
|
padding-left: 10px;
|
||
|
font-size: 1rem;
|
||
|
padding: 0.75rem 1.25rem;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__label {
|
||
|
display: block;
|
||
|
margin: 10px 0;
|
||
|
box-sizing: inherit;
|
||
|
justify-self: left;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__input {
|
||
|
position: relative;
|
||
|
margin-top: 5px;
|
||
|
box-sizing: border-box;
|
||
|
height: 40px;
|
||
|
width: 90%;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__input--add-level {
|
||
|
position: relative;
|
||
|
margin-top: 5px;
|
||
|
box-sizing: inherit;
|
||
|
flex: 3;
|
||
|
height: 40px;
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__add-level-flex-container {
|
||
|
display: flex;
|
||
|
box-sizing: border-box;
|
||
|
width: 90%;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__add-level-spacer {
|
||
|
flex: 3;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__add-level {
|
||
|
background-color: var(--violet);
|
||
|
color: white;
|
||
|
padding: 5px;
|
||
|
font-size: 16px;
|
||
|
|
||
|
border-radius: 5px;
|
||
|
border: 1px var(--light-grey) solid;
|
||
|
height: 40px;
|
||
|
min-width: 125px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.sitekey-form__submit {
|
||
|
margin-top: 50px;
|
||
|
display: block;
|
||
|
background-color: var(--violet);
|
||
|
color: white;
|
||
|
padding: 5px;
|
||
|
font-size: 20px;
|
||
|
|
||
|
border-radius: 5px;
|
||
|
border: 1px var(--light-grey) solid;
|
||
|
min-height: 45px;
|
||
|
width: 125px;
|
||
|
width: 90%;
|
||
|
}
|