124 lines
2.0 KiB
SCSS
124 lines
2.0 KiB
SCSS
@use 'ngx-sharebuttons/themes/default';
|
|
@use 'tailwindcss';
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
|
|
|
|
@import '@ng-select/ng-select/themes/default.theme.css';
|
|
|
|
@import '@fortawesome/fontawesome-free/css/all.min.css';
|
|
|
|
@config "../tailwind.config.js";
|
|
|
|
:root {
|
|
--text-color-secondary: rgba(255, 255, 255);
|
|
--wrapper-width: 1491px;
|
|
// --secondary-color: #ffffff; /* Setzt die secondary Farbe auf weiß */
|
|
}
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
html,
|
|
body,
|
|
app-root {
|
|
margin: 0;
|
|
height: 100%;
|
|
&:hover a {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
app-root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body,
|
|
input,
|
|
button,
|
|
select,
|
|
textarea {
|
|
// font-family: 'Open Sans', sans-serif;
|
|
font-family: var(--font-family);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.wrapper {
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
// header {
|
|
// height: 64px; /* Feste Höhe */
|
|
// }
|
|
|
|
main {
|
|
flex: 1 0 auto; /* Füllt den verfügbaren Platz */
|
|
}
|
|
|
|
footer {
|
|
flex-shrink: 0; /* Verhindert Schrumpfen */
|
|
}
|
|
|
|
*:focus,
|
|
.p-focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
p-menubarsub ul {
|
|
gap: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(155, 155, 155, 0.5);
|
|
border-radius: 20px;
|
|
border: transparent;
|
|
}
|
|
|
|
.wrapper {
|
|
width: var(--wrapper-width);
|
|
max-width: 100%;
|
|
height: 100%;
|
|
margin: auto;
|
|
}
|
|
.p-editor-container .ql-toolbar {
|
|
background: #f9fafb;
|
|
border-top-right-radius: 6px;
|
|
border-top-left-radius: 6px;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-header .p-dropdown-filter {
|
|
margin-right: 0 !important;
|
|
}
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
color: #999 !important;
|
|
}
|
|
button.share {
|
|
font-size: 13px;
|
|
transform: translateY(-2px) scale(1.03);
|
|
margin-right: 4px;
|
|
margin-left: 2px;
|
|
border-radius: 4px;
|
|
i {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
.share-edit {
|
|
background-color: #0088cc;
|
|
}
|
|
.share-save {
|
|
background-color: #e60023;
|
|
}
|
|
.share-email {
|
|
background-color: #ff961c;
|
|
}
|