mirror of
https://github.com/mue/mue.git
synced 2026-07-17 22:14:13 +02:00
366 lines
6.0 KiB
SCSS
366 lines
6.0 KiB
SCSS
.Modal {
|
|
color: map-get($modal, "text");
|
|
background-color: map-get($modal, "background");
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
|
border: none;
|
|
opacity: 1;
|
|
z-index: -2;
|
|
padding: 25px;
|
|
cursor: hand;
|
|
transition: 0.6s;
|
|
transition-timing-function: ease-in;
|
|
border-radius: map-get($modal, "border-radius");
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #34495e #bdc3c7;
|
|
position: relative;
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.modalLink {
|
|
color: #5352ed;
|
|
cursor: pointer;
|
|
padding-left: 10px;
|
|
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.closeModal {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 2rem;
|
|
font-size: 4em;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: grey;
|
|
}
|
|
}
|
|
|
|
.dark {
|
|
background-color: #2f3542 !important;
|
|
color: white !important;
|
|
|
|
.sidebar {
|
|
background-color: #2a303b !important;
|
|
}
|
|
|
|
.tab-list-active {
|
|
background: rgba(161, 159, 159, 0.8);
|
|
}
|
|
|
|
.tab-list-item {
|
|
&:hover {
|
|
background: rgba(161, 159, 159, 0.8);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ReactModal__Html--open,
|
|
.ReactModal__Body--open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Overlay {
|
|
position: fixed;
|
|
z-index: 100;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ReactModal__Content {
|
|
min-height: calc(100vh - 30vh);
|
|
max-height: calc(100vh - 10vh);
|
|
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
|
|
overflow-y: auto;
|
|
position: relative;
|
|
}
|
|
|
|
@media only screen and (max-height: 700px) {
|
|
.ReactModal__Content {
|
|
min-height: 500px;
|
|
max-height: calc(100vh - 30vh);
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-height: 700px) {
|
|
.ReactModal__Content {
|
|
min-height: 600px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
margin-top: -20px;
|
|
width: 900px;
|
|
|
|
h1 {
|
|
font-size: 35px;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.columns {
|
|
font-size: 15px;
|
|
|
|
li {
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ReactModal__Overlay {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
transition: all 300ms cubic-bezier(.47, 1.64, .41, .8);
|
|
}
|
|
|
|
.ReactModal__Overlay--after-open {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.ReactModal__Overlay--before-close {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
}
|
|
|
|
ul.sidebar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 0;
|
|
padding-left: 0;
|
|
height: 100%;
|
|
background: #f0f0f0;
|
|
position: absolute;
|
|
overflow-y: show;
|
|
left: 0;
|
|
border-radius: 12px 0 0 12px;
|
|
text-align: left;
|
|
font-size: 24px;
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
svg,
|
|
li {
|
|
font-size: 30px;
|
|
}
|
|
|
|
svg {
|
|
vertical-align: middle;
|
|
font-size: 32px;
|
|
padding: 5px;
|
|
}
|
|
|
|
hr {
|
|
height: 3px;
|
|
background: rgba(196, 196, 196, 0.74);
|
|
width: 75%;
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
font-size: 24px;
|
|
padding: 5px 30px 5px 30px;
|
|
cursor: pointer;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#modal {
|
|
position: absolute;
|
|
margin: auto;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 60%;
|
|
height: 80%;
|
|
}
|
|
|
|
.tab-list-active {
|
|
background: rgba(219, 219, 219, 0.72);
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
li.tab-list-item {
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
ul.sidebar {
|
|
h1 {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tab-list-item {
|
|
&:hover {
|
|
background: rgba(219, 219, 219, 0.8);
|
|
}
|
|
}
|
|
|
|
ul.sectionSelector {
|
|
margin: 0;
|
|
width: 60%;
|
|
padding-left: 30%;
|
|
padding-top: 20px;
|
|
|
|
.option {
|
|
display: inline;
|
|
padding: 15px;
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
ul.sectionSelector {
|
|
span {
|
|
display: none;
|
|
padding: 5px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
position: absolute;
|
|
left: 30%;
|
|
width: 60%;
|
|
|
|
h3 {
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1300px) {
|
|
.tab-content {
|
|
position: absolute;
|
|
left: 30%;
|
|
}
|
|
}
|
|
|
|
.navbar-item {
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.modalNavbar {
|
|
position: absolute;
|
|
left: 20rem;
|
|
top: 1rem;
|
|
justify-content: center;
|
|
|
|
svg {
|
|
margin-right: 0.5rem;
|
|
padding: 3px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.modalNavbar {
|
|
left: 6rem;
|
|
}
|
|
}
|
|
|
|
.navbar-item {
|
|
span,
|
|
svg {
|
|
font-size: 1.1em !important;
|
|
}
|
|
|
|
&:hover {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
li.navbar-item {
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tabIndicator {
|
|
width: 40px;
|
|
height: 3px;
|
|
background: #000;
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.tabContent {
|
|
left: 20px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
ul.sidebar {
|
|
width: 310px;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.navbar-item-active {
|
|
background: map-get($theme-colours, "gradient");
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
svg {
|
|
color: orange;
|
|
}
|
|
|
|
&:hover {
|
|
opacity: .8;
|
|
background: map-get($theme-colours, "gradient");
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 13px;
|
|
background: #bdc3c7;
|
|
border-top-right-radius: map-get($modal, 'border-radius');
|
|
border-bottom-right-radius: map-get($modal, 'border-radius');
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #34495e;
|
|
border-top-right-radius: map-get($modal, 'border-radius');
|
|
border-bottom-right-radius: map-get($modal, 'border-radius');
|
|
}
|
|
|
|
.abouticon {
|
|
width: 96px;
|
|
height: auto;
|
|
border-radius: 50%;
|
|
padding-right: 5px;
|
|
} |