mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
158 lines
3 KiB
CSS
158 lines
3 KiB
CSS
|
.base-skeleton {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.base-skeleton * {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.base-skeleton .container-main {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
max-width: 1280px;
|
||
|
}
|
||
|
.base-skeleton .panel {
|
||
|
margin: 8px 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.base-skeleton .panel > .element-paragraph:first-child,
|
||
|
.base-skeleton .panel .element-title:first-child,
|
||
|
.base-skeleton .panel .panel:first-child {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
.base-skeleton .panel > .element-paragraph:last-child,
|
||
|
.base-skeleton .panel .element-title:last-child,
|
||
|
.base-skeleton .panel .panel:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
.base-skeleton .panel-box {
|
||
|
padding: 8px;
|
||
|
border-radius: 4px;
|
||
|
border-width: 2px;
|
||
|
border-style: solid;
|
||
|
background-color: rgba(0, 0, 0, 0.025);
|
||
|
}
|
||
|
.base-skeleton .panel-blockquote {
|
||
|
border-left-width: 2px;
|
||
|
border-top-width: 0;
|
||
|
border-bottom-width: 0;
|
||
|
border-right-width: 0;
|
||
|
}
|
||
|
.base-skeleton .panel-aside {
|
||
|
border-width: 0;
|
||
|
font-size: smaller;
|
||
|
}
|
||
|
.base-skeleton .panel-split {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 8px;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
.base-skeleton .panel-split > * {
|
||
|
flex-grow: 1;
|
||
|
flex-shrink: 0;
|
||
|
flex-basis: 0;
|
||
|
}
|
||
|
.base-skeleton .panel-split > .panel {
|
||
|
margin: 0;
|
||
|
}
|
||
|
.base-skeleton .status-disabled {
|
||
|
cursor: not-allowed;
|
||
|
opacity: 50%;
|
||
|
}
|
||
|
.base-skeleton .status-hoverable {
|
||
|
cursor: help;
|
||
|
}
|
||
|
.base-skeleton .status-clickable {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.base-skeleton .spoiler {
|
||
|
filter: blur(5px);
|
||
|
}
|
||
|
.base-skeleton .spoiler:hover {
|
||
|
filter: none;
|
||
|
}
|
||
|
.base-skeleton .element-title {
|
||
|
text-align: center;
|
||
|
}
|
||
|
.base-skeleton .element-separator {
|
||
|
border-width: 1px;
|
||
|
border-color: dimgrey;
|
||
|
}
|
||
|
.base-skeleton .element-list-item {
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
.base-skeleton .align-left {
|
||
|
text-align: left;
|
||
|
}
|
||
|
.base-skeleton .align-center {
|
||
|
text-align: center;
|
||
|
}
|
||
|
.base-skeleton .align-right {
|
||
|
text-align: right;
|
||
|
}
|
||
|
.base-skeleton .size-xxl {
|
||
|
font-size: xx-large;
|
||
|
}
|
||
|
.base-skeleton .size-xl {
|
||
|
font-size: x-large;
|
||
|
}
|
||
|
.base-skeleton .size-l {
|
||
|
font-size: large;
|
||
|
}
|
||
|
.base-skeleton .size-m {
|
||
|
font-size: medium;
|
||
|
}
|
||
|
.base-skeleton .size-s {
|
||
|
font-size: small;
|
||
|
}
|
||
|
.base-skeleton .size-xs {
|
||
|
font-size: x-small;
|
||
|
}
|
||
|
.base-skeleton .size-xxs {
|
||
|
font-size: xx-small;
|
||
|
}
|
||
|
.base-skeleton .style-bold {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.base-skeleton .style-italic {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
.base-skeleton .style-underline {
|
||
|
text-decoration-line: underline;
|
||
|
}
|
||
|
.base-skeleton .style-strike {
|
||
|
text-decoration-line: line-through;
|
||
|
}
|
||
|
.base-skeleton .style-monospace {
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
.base-skeleton .style-keyboard {
|
||
|
font-family: monospace;
|
||
|
padding: 4px;
|
||
|
border: 2px outset;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.base-skeleton .color-red {
|
||
|
color: red;
|
||
|
}
|
||
|
.base-skeleton .color-orange {
|
||
|
color: orange;
|
||
|
}
|
||
|
.base-skeleton .color-yellow {
|
||
|
color: #dddd00;
|
||
|
}
|
||
|
.base-skeleton .color-lime {
|
||
|
color: lime;
|
||
|
}
|
||
|
.base-skeleton .color-cyan {
|
||
|
color: cyan;
|
||
|
}
|
||
|
.base-skeleton .color-blue {
|
||
|
color: blue;
|
||
|
}
|
||
|
.base-skeleton .color-magenta {
|
||
|
color: magenta;
|
||
|
}
|
||
|
.base-skeleton .color-gray {
|
||
|
color: gray;
|
||
|
}
|
||
|
/*# sourceMappingURL=skeleton.module.css.map */
|