remove assets
This commit is contained in:
@@ -1,17 +0,0 @@
|
|||||||
pre.app-code {
|
|
||||||
background-color: var(--code-background);
|
|
||||||
margin: 0 0 1rem 0;
|
|
||||||
padding: 0;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
overflow: auto;
|
|
||||||
|
|
||||||
code {
|
|
||||||
color: var(--code-color);
|
|
||||||
padding: 1rem;
|
|
||||||
margin: 0;
|
|
||||||
line-height: 1.5;
|
|
||||||
display: block;
|
|
||||||
font-weight: semibold;
|
|
||||||
font-family: monaco, Consolas, monospace;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
@use './code.scss';
|
|
||||||
@use './flags/flags.css';
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,24 +0,0 @@
|
|||||||
html {
|
|
||||||
height: 100%;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 1.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Lato', sans-serif;
|
|
||||||
color: var(--text-color);
|
|
||||||
background-color: var(--surface-ground);
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
min-height: 100%;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-wrapper {
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
.layout-footer {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 1rem 0 1rem 0;
|
|
||||||
gap: 0.5rem;
|
|
||||||
border-top: 1px solid var(--surface-border);
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
.layout-main-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100vh;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 6rem 2rem 0 2rem;
|
|
||||||
transition: margin-left var(--layout-section-transition-duration);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-main {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
padding-bottom: 2rem;
|
|
||||||
}
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
@use 'mixins' as *;
|
|
||||||
|
|
||||||
.layout-sidebar {
|
|
||||||
position: fixed;
|
|
||||||
width: 20rem;
|
|
||||||
height: calc(100vh - 8rem);
|
|
||||||
z-index: 999;
|
|
||||||
overflow-y: auto;
|
|
||||||
user-select: none;
|
|
||||||
top: 6rem;
|
|
||||||
left: 2rem;
|
|
||||||
transition:
|
|
||||||
transform var(--layout-section-transition-duration),
|
|
||||||
left var(--layout-section-transition-duration);
|
|
||||||
background-color: var(--surface-overlay);
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
padding: 0.5rem 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-menu {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
list-style-type: none;
|
|
||||||
|
|
||||||
.layout-root-menuitem {
|
|
||||||
> .layout-menuitem-root-text {
|
|
||||||
font-size: 0.857rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-weight: 700;
|
|
||||||
color: var(--text-color);
|
|
||||||
margin: 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
> a {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
user-select: none;
|
|
||||||
|
|
||||||
&.active-menuitem {
|
|
||||||
> .layout-submenu-toggler {
|
|
||||||
transform: rotate(-180deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
li.active-menuitem {
|
|
||||||
> a {
|
|
||||||
.layout-submenu-toggler {
|
|
||||||
transform: rotate(-180deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
list-style-type: none;
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
position: relative;
|
|
||||||
outline: 0 none;
|
|
||||||
color: var(--text-color);
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 0.75rem 1rem;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
transition:
|
|
||||||
box-shadow var(--element-transition-duration);
|
|
||||||
|
|
||||||
.layout-menuitem-icon {
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-submenu-toggler {
|
|
||||||
font-size: 75%;
|
|
||||||
margin-left: auto;
|
|
||||||
transition: transform var(--element-transition-duration);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.active-route {
|
|
||||||
font-weight: 700;
|
|
||||||
color: var(--primary-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: var(--surface-hover);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
@include focused-inset();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
overflow: hidden;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 3.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
a {
|
|
||||||
margin-left: 4rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-submenu-enter-from,
|
|
||||||
.layout-submenu-leave-to {
|
|
||||||
max-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-submenu-enter-to,
|
|
||||||
.layout-submenu-leave-from {
|
|
||||||
max-height: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-submenu-leave-active {
|
|
||||||
overflow: hidden;
|
|
||||||
transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-submenu-enter-active {
|
|
||||||
overflow: hidden;
|
|
||||||
transition: max-height 1s ease-in-out;
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
@mixin focused() {
|
|
||||||
outline-width: var(--focus-ring-width);
|
|
||||||
outline-style: var(--focus-ring-style);
|
|
||||||
outline-color: var(--focus-ring-color);
|
|
||||||
outline-offset: var(--focus-ring-offset);
|
|
||||||
box-shadow: var(--focus-ring-shadow);
|
|
||||||
transition:
|
|
||||||
box-shadow var(--transition-duration),
|
|
||||||
outline-color var(--transition-duration);
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin focused-inset() {
|
|
||||||
outline-offset: -1px;
|
|
||||||
box-shadow: inset var(--focus-ring-shadow);
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
.preloader {
|
|
||||||
position: fixed;
|
|
||||||
z-index: 999999;
|
|
||||||
background: #edf1f5;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.preloader-content {
|
|
||||||
border: 0 solid transparent;
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 150px;
|
|
||||||
height: 150px;
|
|
||||||
position: absolute;
|
|
||||||
top: calc(50vh - 75px);
|
|
||||||
left: calc(50vw - 75px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.preloader-content:before, .preloader-content:after{
|
|
||||||
content: '';
|
|
||||||
border: 1em solid var(--primary-color);
|
|
||||||
border-radius: 50%;
|
|
||||||
width: inherit;
|
|
||||||
height: inherit;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
animation: loader 2s linear infinite;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.preloader-content:before{
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes loader{
|
|
||||||
0%{
|
|
||||||
transform: scale(0);
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
50%{
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
100%{
|
|
||||||
transform: scale(1);
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
@media screen and (min-width: 1960px) {
|
|
||||||
.layout-main,
|
|
||||||
.landing-wrapper {
|
|
||||||
width: 1504px;
|
|
||||||
margin-left: auto !important;
|
|
||||||
margin-right: auto !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 992px) {
|
|
||||||
.layout-wrapper {
|
|
||||||
&.layout-overlay {
|
|
||||||
.layout-main-container {
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-sidebar {
|
|
||||||
transform: translateX(-100%);
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
height: 100vh;
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-right: 1px solid var(--surface-border);
|
|
||||||
transition:
|
|
||||||
transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99),
|
|
||||||
left 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
|
|
||||||
box-shadow:
|
|
||||||
0px 3px 5px rgba(0, 0, 0, 0.02),
|
|
||||||
0px 0px 2px rgba(0, 0, 0, 0.05),
|
|
||||||
0px 1px 4px rgba(0, 0, 0, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.layout-overlay-active {
|
|
||||||
.layout-sidebar {
|
|
||||||
transform: translateX(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.layout-static {
|
|
||||||
.layout-main-container {
|
|
||||||
margin-left: 22rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.layout-static-inactive {
|
|
||||||
.layout-sidebar {
|
|
||||||
transform: translateX(-100%);
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-main-container {
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-mask {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
|
||||||
.blocked-scroll {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-wrapper {
|
|
||||||
.layout-main-container {
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-sidebar {
|
|
||||||
transform: translateX(-100%);
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
height: 100vh;
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
transition:
|
|
||||||
transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99),
|
|
||||||
left 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-mask {
|
|
||||||
display: none;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 998;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: var(--maskbg);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.layout-mobile-active {
|
|
||||||
.layout-sidebar {
|
|
||||||
transform: translateX(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-mask {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
@use 'mixins' as *;
|
|
||||||
|
|
||||||
.layout-topbar {
|
|
||||||
position: fixed;
|
|
||||||
height: 4rem;
|
|
||||||
z-index: 997;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0 2rem;
|
|
||||||
background-color: var(--surface-card);
|
|
||||||
transition: left var(--layout-section-transition-duration);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
.layout-topbar-logo-container {
|
|
||||||
width: 20rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-logo {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
color: var(--text-color);
|
|
||||||
font-weight: 500;
|
|
||||||
gap: 0.5rem;
|
|
||||||
|
|
||||||
svg {
|
|
||||||
width: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus-visible {
|
|
||||||
@include focused();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-action {
|
|
||||||
display: inline-flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 2.5rem;
|
|
||||||
height: 2.5rem;
|
|
||||||
color: var(--text-color);
|
|
||||||
transition: background-color var(--element-transition-duration);
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: var(--surface-hover);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus-visible {
|
|
||||||
@include focused();
|
|
||||||
}
|
|
||||||
|
|
||||||
i {
|
|
||||||
font-size: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-size: 1rem;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.layout-topbar-action-highlight {
|
|
||||||
background-color: var(--primary-color);
|
|
||||||
color: var(--primary-contrast-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-menu-button {
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-menu-button {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-actions {
|
|
||||||
margin-left: auto;
|
|
||||||
display: flex;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-menu-content {
|
|
||||||
display: flex;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-config-menu {
|
|
||||||
display: flex;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
|
||||||
.layout-topbar {
|
|
||||||
padding: 0 2rem;
|
|
||||||
|
|
||||||
.layout-topbar-logo-container {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-menu-button {
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-menu-button {
|
|
||||||
display: inline-flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-menu {
|
|
||||||
position: absolute;
|
|
||||||
background-color: var(--surface-overlay);
|
|
||||||
transform-origin: top;
|
|
||||||
box-shadow:
|
|
||||||
0px 3px 5px rgba(0, 0, 0, 0.02),
|
|
||||||
0px 0px 2px rgba(0, 0, 0, 0.05),
|
|
||||||
0px 1px 4px rgba(0, 0, 0, 0.08);
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
padding: 1rem;
|
|
||||||
right: 2rem;
|
|
||||||
top: 4rem;
|
|
||||||
min-width: 15rem;
|
|
||||||
border: 1px solid var(--surface-border);
|
|
||||||
|
|
||||||
.layout-topbar-menu-content {
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-action {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
justify-content: flex-start;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
|
|
||||||
i {
|
|
||||||
font-size: 1rem;
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-weight: medium;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-topbar-menu-content {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.config-panel {
|
|
||||||
.config-panel-label {
|
|
||||||
font-size: 0.875rem;
|
|
||||||
color: var(--text-secondary-color);
|
|
||||||
font-weight: 600;
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.config-panel-colors {
|
|
||||||
> div {
|
|
||||||
padding-top: 0.5rem;
|
|
||||||
display: flex;
|
|
||||||
gap: 0.5rem;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
|
|
||||||
button {
|
|
||||||
border: none;
|
|
||||||
width: 1.25rem;
|
|
||||||
height: 1.25rem;
|
|
||||||
border-radius: 50%;
|
|
||||||
padding: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
outline-color: transparent;
|
|
||||||
outline-width: 2px;
|
|
||||||
outline-style: solid;
|
|
||||||
outline-offset: 1px;
|
|
||||||
|
|
||||||
&.active-color {
|
|
||||||
outline-color: var(--primary-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.config-panel-settings {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin: 1.5rem 0 1rem 0;
|
|
||||||
font-family: inherit;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 1.5;
|
|
||||||
color: var(--text-color);
|
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 1.75rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h5 {
|
|
||||||
font-size: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h6 {
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
mark {
|
|
||||||
background: #fff8e1;
|
|
||||||
padding: 0.25rem 0.4rem;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
margin: 1rem 0;
|
|
||||||
padding: 0 2rem;
|
|
||||||
border-left: 4px solid #90a4ae;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
border-top: solid var(--surface-border);
|
|
||||||
border-width: 1px 0 0 0;
|
|
||||||
margin: 1rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0 0 1rem 0;
|
|
||||||
line-height: 1.5;
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/* Utils */
|
|
||||||
.clearfix:after {
|
|
||||||
content: ' ';
|
|
||||||
display: block;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
background: var(--surface-card);
|
|
||||||
padding: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
border-radius: var(--content-border-radius);
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.p-toast {
|
|
||||||
&.p-toast-top-right,
|
|
||||||
&.p-toast-top-left,
|
|
||||||
&.p-toast-top-center {
|
|
||||||
top: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
@use './variables/_common';
|
|
||||||
@use './variables/_light';
|
|
||||||
@use './variables/_dark';
|
|
||||||
@use './_mixins';
|
|
||||||
@use './_preloading';
|
|
||||||
@use './_core';
|
|
||||||
@use './_main';
|
|
||||||
@use './_topbar';
|
|
||||||
@use './_menu';
|
|
||||||
@use './_footer';
|
|
||||||
@use './_responsive';
|
|
||||||
@use './_utils';
|
|
||||||
@use './_typography';
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
:root {
|
|
||||||
--primary-color: var(--p-primary-color);
|
|
||||||
--primary-contrast-color: var(--p-primary-contrast-color);
|
|
||||||
--text-color: var(--p-text-color);
|
|
||||||
--text-color-secondary: var(--p-text-muted-color);
|
|
||||||
--surface-border: var(--p-content-border-color);
|
|
||||||
--surface-card: var(--p-content-background);
|
|
||||||
--surface-hover: var(--p-content-hover-background);
|
|
||||||
--surface-overlay: var(--p-overlay-popover-background);
|
|
||||||
--transition-duration: var(--p-transition-duration);
|
|
||||||
--maskbg: var(--p-mask-background);
|
|
||||||
--content-border-radius: var(--p-content-border-radius);
|
|
||||||
--layout-section-transition-duration: 0.2s;
|
|
||||||
--element-transition-duration: var(--p-transition-duration);
|
|
||||||
--focus-ring-width: var(--p-focus-ring-width);
|
|
||||||
--focus-ring-style: var(--p-focus-ring-style);
|
|
||||||
--focus-ring-color: var(--p-focus-ring-color);
|
|
||||||
--focus-ring-offset: var(--p-focus-ring-offset);
|
|
||||||
--focus-ring-shadow: var(--p-focus-ring-shadow);
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
:root[class*='app-dark'] {
|
|
||||||
--surface-ground: var(--p-surface-950);
|
|
||||||
--code-background: var(--p-surface-800);
|
|
||||||
--code-color: var(--p-surface-100);
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
:root {
|
|
||||||
--surface-ground: var(--p-surface-100);
|
|
||||||
--code-background: var(--p-surface-900);
|
|
||||||
--code-color: var(--p-surface-200);
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
/* You can add global styles to this file, and also import other style files */
|
|
||||||
@use 'primeicons/primeicons.css';
|
|
||||||
@use '@/assets/layout/layout.scss';
|
|
||||||
@use '@/assets/demo/demo.scss';
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
@import 'tailwindcss';
|
|
||||||
|
|
||||||
@plugin 'tailwindcss-primeui';
|
|
||||||
|
|
||||||
@custom-variant dark (&:where([class*="app-dark"], [class*="app-dark"] *));
|
|
||||||
|
|
||||||
@theme {
|
|
||||||
--breakpoint-*: initial;
|
|
||||||
--breakpoint-sm: 576px;
|
|
||||||
--breakpoint-md: 768px;
|
|
||||||
--breakpoint-lg: 992px;
|
|
||||||
--breakpoint-xl: 1200px;
|
|
||||||
--breakpoint-2xl: 1920px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
The default border color has changed to `currentcolor` in Tailwind CSS v4,
|
|
||||||
so we've added these compatibility styles to make sure everything still
|
|
||||||
looks the same as it did with Tailwind CSS v3.
|
|
||||||
|
|
||||||
If we ever want to remove these styles, we need to add an explicit border
|
|
||||||
color utility to any element that depends on these defaults.
|
|
||||||
*/
|
|
||||||
@layer base {
|
|
||||||
*,
|
|
||||||
::after,
|
|
||||||
::before,
|
|
||||||
::backdrop,
|
|
||||||
::file-selector-button {
|
|
||||||
border-color: var(--color-gray-200, currentcolor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user