Import theme

This commit is contained in:
DuN0z 2025-10-09 10:23:36 +02:00
parent 51769fa6be
commit c59ffbfeee
127 changed files with 13611 additions and 1 deletions

View file

@ -0,0 +1,65 @@
/* (CONTACT) FORM */
@use 'modules/color_theme' as color;
.contact-form {
margin-top: 30px;
}
.form-style {
width: 100%;
}
.form-style ul {
padding: 0;
margin: 0;
list-style: none;
}
.form-style ul li {
@include color.themed() {
background-color: color.t('accent');
color: color.t('primary');
}
display: block;
margin-bottom: 10px;
min-height: 35px;
}
.form-style ul li .field-style {
@include color.themed() {
border: color.t('border');
background-color: color.t('accent');
color: color.t('primary');
}
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 8px;
outline: none;
font-family: inherit;
}
.form-style ul li .field-style:focus {
box-shadow: 0 0 5px;
border: 1px solid;
}
.form-style ul li .field-split {
width: 49%;
}
.form-style ul li .field-full {
width: 100%;
}
.form-style ul li input.align-left {
float: left;
}
.form-style ul li input.align-right {
float: right;
}
.form-style ul li textarea {
width: 100%;
height: auto;
}
.form-style ul li input[type='button'],
.form-style ul li input[type='submit'] {
display: inline-block;
cursor: pointer;
text-decoration: none;
width: 100%;
}
/* (CONTACT) FORM END */

View file

@ -0,0 +1,39 @@
@use 'modules/color_theme' as color;
.medium-zoom-overlay {
@include color.themed() {
background: color.t('accent');
}
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
transition: opacity 300ms;
will-change: opacity;
}
.medium-zoom--opened .medium-zoom-overlay {
cursor: pointer;
cursor: zoom-out;
opacity: 1;
}
.medium-zoom-image {
cursor: pointer;
cursor: zoom-in;
transition: transform 300ms cubic-bezier(0.2, 0, 0.2, 1) !important;
z-index: 100;
}
.medium-zoom-image--hidden {
visibility: hidden;
}
.medium-zoom-image--opened {
position: relative;
cursor: pointer;
cursor: zoom-out;
will-change: transform;
}

View file

@ -0,0 +1,20 @@
@use 'modules/color_theme' as color;
table {
display: table;
width: 80%;
border-collapse: collapse;
}
tr {
display: table-row;
}
th,
td {
display: table-cell;
padding: 8px;
@include color.themed() {
border: color.t('border');
}
}

View file

@ -0,0 +1,25 @@
@use 'modules/variables' as var;
#TableOfContents {
display: block;
background: transparent;
}
#TableOfContents ul {
list-style: none;
line-height: 1.9em;
margin: 0;
}
#TableOfContents > ul {
padding-left: 0;
}
#TableOfContents li a {
display: inherit;
color: var.$info;
}
#TableOfContents li a:hover {
display: inherit;
}