mirror of
https://github.com/Xevion/v2.xevion.dev.git
synced 2025-12-05 23:16:47 -06:00
37 lines
671 B
SCSS
37 lines
671 B
SCSS
span,
|
|
p {
|
|
&.tab {
|
|
margin-left: 2em;
|
|
}
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.no-underline {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.callout-section {
|
|
border: solid white;
|
|
border-width: thin 0;
|
|
padding: 10px;
|
|
}
|
|
|
|
body.wide {
|
|
max-width: 60rem !important;
|
|
}
|
|
|
|
.no-select {
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
|
|
} |