PerlaTheDog/assets/css/main.css

1710 lines
54 KiB
CSS
Raw Normal View History

@import url("https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css");
2023-09-09 12:44:33 -07:00
@import url("https://fonts.bunny.net/css?family=Source+Sans+Pro:300,300italic,400,400italic");
:root {
--text-color: #fff;
--href: #F49ABD;
2023-09-09 12:44:33 -07:00
--href-dark: none;
--main-font: "Source Sans Pro", Helvetica, sans-serif;
2023-09-09 12:44:33 -07:00
}
2022-12-01 02:10:16 -08:00
2022-12-06 01:11:51 -08:00
::-webkit-scrollbar {
2023-09-09 12:44:33 -07:00
display: none;
2022-12-06 01:11:51 -08:00
}
a.white-link {
color: var(--text-color) !important;
2022-12-01 02:10:16 -08:00
}
@keyframes spinner {
2023-09-09 12:44:33 -07:00
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
2022-12-01 02:10:16 -08:00
body {
2023-09-09 12:44:33 -07:00
line-height: 1;
2022-12-01 02:10:16 -08:00
}
2023-09-09 12:44:33 -07:00
ol,
ul {
list-style: none;
2022-12-01 02:10:16 -08:00
}
2023-09-09 12:44:33 -07:00
blockquote,
q {
quotes: none;
2022-12-01 02:10:16 -08:00
}
2023-09-09 12:44:33 -07:00
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
2022-12-01 02:10:16 -08:00
table {
2023-09-09 12:44:33 -07:00
border-collapse: collapse;
border-spacing: 0;
2022-12-01 02:10:16 -08:00
}
body {
2023-09-09 12:44:33 -07:00
-webkit-text-size-adjust: none;
2022-12-01 02:10:16 -08:00
}
mark {
2023-09-09 12:44:33 -07:00
background-color: transparent;
color: inherit;
2022-12-01 02:10:16 -08:00
}
input::-moz-focus-inner {
2023-09-09 12:44:33 -07:00
border: 0;
padding: 0;
2022-12-01 02:10:16 -08:00
}
2023-09-09 12:44:33 -07:00
input,
select,
textarea {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
2022-12-01 02:10:16 -08:00
}
/* Basic */
body {
2023-09-09 12:44:33 -07:00
-ms-overflow-style: scrollbar;
}
2022-12-01 02:10:16 -08:00
@media screen and (max-width: 480px) {
2023-09-09 12:44:33 -07:00
html,
body {
min-width: 320px;
}
}
html {
2023-09-09 12:44:33 -07:00
box-sizing: border-box;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
*,
*:before,
*:after {
box-sizing: inherit;
}
2022-12-01 02:10:16 -08:00
body {
2023-09-09 12:44:33 -07:00
background: #121212;
}
2023-09-09 12:44:33 -07:00
body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
animation: none !important;
transition: none !important;
}
2023-09-09 12:44:33 -07:00
body.is-resizing *,
body.is-resizing *:before,
body.is-resizing *:after {
animation: none !important;
transition: none !important;
}
2022-12-01 02:10:16 -08:00
/* Type */
2023-09-09 12:44:33 -07:00
body,
input,
select,
textarea {
color: var(--text-color);
font-family: var(--main-font);
font-size: 15pt;
font-weight: 300;
letter-spacing: 0.025em;
line-height: 1.65;
}
@media screen and (max-width: 1680px) {
2023-09-09 12:44:33 -07:00
body,
input,
select,
textarea {
font-size: 11pt;
}
}
a {
2023-09-09 12:44:33 -07:00
transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
border-bottom: dotted 1px;
color: var(--href);
text-decoration: none;
}
2022-12-01 02:10:16 -08:00
a:hover {
2023-09-09 12:44:33 -07:00
border-bottom-color: transparent;
color: var(--href) !important;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
strong,
b {
color: var(--text-color);
font-weight: 700;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
.title {
color: var(--text-color);
font-weight: 300;
}
em,
i {
font-style: italic;
}
2022-12-01 02:10:16 -08:00
p {
2023-09-09 12:44:33 -07:00
margin: 0 0 2em 0;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--text-color);
font-weight: 300;
letter-spacing: 0.1em;
line-height: 1.5;
margin: 0 0 1em 0;
text-transform: both;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: inherit;
text-decoration: none;
}
2022-12-01 02:10:16 -08:00
h1 {
2023-09-09 12:44:33 -07:00
font-size: 2em;
}
2022-12-01 02:10:16 -08:00
h2 {
2023-09-09 12:44:33 -07:00
font-size: 1.25em;
}
h3 {
2023-09-09 12:44:33 -07:00
font-size: 1.1em;
}
2022-12-01 02:10:16 -08:00
h4 {
2023-09-09 12:44:33 -07:00
font-size: 1em;
}
2022-12-01 02:10:16 -08:00
h5 {
2023-09-09 12:44:33 -07:00
font-size: 0.9em;
}
h6 {
2023-09-09 12:44:33 -07:00
font-size: 0.7em;
}
@media screen and (max-width: 736px) {
2023-09-09 12:44:33 -07:00
h2 {
font-size: 1em;
}
h3 {
font-size: 0.9em;
}
h4 {
font-size: 0.8em;
}
h5 {
font-size: 0.7em;
}
h6 {
font-size: 0.7em;
}
}
sub {
2023-09-09 12:44:33 -07:00
font-size: 0.8em;
position: relative;
top: 0.5em;
}
2022-12-01 02:10:16 -08:00
sup {
2023-09-09 12:44:33 -07:00
font-size: 0.8em;
position: relative;
top: -0.5em;
}
2022-12-01 02:10:16 -08:00
blockquote {
2023-09-09 12:44:33 -07:00
border-left: 4px #36383c;
font-style: italic;
margin: 0 0 2em 0;
padding: 0.5em 0 0.5em 2em;
}
2022-12-01 02:10:16 -08:00
code {
2023-09-09 12:44:33 -07:00
background: #121212;
border: solid 1px #36383c;
font-family: "Courier New", monospace;
font-size: 0.9em;
margin: 0 0.25em;
padding: 0.25em 0.65em;
}
2022-12-01 02:10:16 -08:00
pre {
2023-09-09 12:44:33 -07:00
-webkit-overflow-scrolling: touch;
font-family: "Courier New", monospace;
font-size: 0.9em;
margin: 0 0 2em 0;
}
2022-12-01 02:10:16 -08:00
pre code {
2023-09-09 12:44:33 -07:00
display: block;
line-height: 1.75;
padding: 1em 1.5em;
overflow-x: auto;
}
2022-12-01 02:10:16 -08:00
hr {
2023-09-09 12:44:33 -07:00
border: 0;
border-bottom: solid 1px #36383c;
margin: 2em 0;
}
2022-12-01 02:10:16 -08:00
hr.major {
2023-09-09 12:44:33 -07:00
margin: 3em 0;
}
2022-12-01 02:10:16 -08:00
.align-left {
2023-09-09 12:44:33 -07:00
text-align: left;
}
2022-12-01 02:10:16 -08:00
.align-center {
2023-09-09 12:44:33 -07:00
text-align: center;
}
2022-12-01 02:10:16 -08:00
.align-right {
2023-09-09 12:44:33 -07:00
text-align: right;
}
2022-12-01 02:10:16 -08:00
/* Button */
2023-09-09 12:44:33 -07:00
input[type=submit],
input[type=reset],
input[type=button],
button,
.button {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
background-color: transparent;
border: 0;
border-radius: 0;
box-shadow: inset 0 0 0 2px #121112;
color: var(--text-color) !important;
cursor: pointer;
display: inline-block;
font-size: 0.9em;
font-weight: 300;
height: 3.05556em;
letter-spacing: 0.1em;
line-height: 3.05556em;
padding: 0 2.5em;
text-align: center;
text-decoration: none;
text-transform: both;
white-space: nowrap;
}
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover,
.button:hover {
box-shadow: inset 0 0 0 2px #34a58e;
color: #34a58e !important;
}
input[type=submit]:hover:active,
input[type=reset]:hover:active,
input[type=button]:hover:active,
button:hover:active,
.button:hover:active {
background-color: rgba(52, 165, 142, 0.15);
color: var(--href) !important;
}
input[type=submit].icon,
input[type=reset].icon,
input[type=button].icon,
button.icon,
.button.icon {
padding-left: 1.35em;
}
input[type=submit].icon:before,
input[type=reset].icon:before,
input[type=button].icon:before,
button.icon:before,
.button.icon:before {
margin-right: 0.5em;
}
input[type=submit].fit,
input[type=reset].fit,
input[type=button].fit,
button.fit,
.button.fit {
width: 100%;
}
input[type=submit].small,
input[type=reset].small,
input[type=button].small,
button.small,
.button.small {
font-size: 0.8em;
}
input[type=submit].large,
input[type=reset].large,
input[type=button].large,
button.large,
.button.large {
font-size: 1.35em;
}
input[type=submit].primary,
input[type=reset].primary,
input[type=button].primary,
button.primary,
.button.primary {
background-color: var(--href);
box-shadow: none;
}
input[type=submit].primary:hover,
input[type=reset].primary:hover,
input[type=button].primary:hover,
button.primary:hover,
.button.primary:hover {
background-color: var(--href);
color: var(--text-color) !important;
}
input[type=submit].primary:hover:active,
input[type=reset].primary:hover:active,
input[type=button].primary:hover:active,
button.primary:hover:active,
.button.primary:hover:active {
background-color: var(--href);
}
input[type=submit].disabled,
input[type=submit]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=button].disabled,
input[type=button]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
pointer-events: none;
opacity: 0.35;
}
2022-12-01 02:10:16 -08:00
/* Form */
form {
2023-09-09 12:44:33 -07:00
margin: 0 0 2em 0;
}
form > :last-child {
2023-09-09 12:44:33 -07:00
margin-bottom: 0;
}
form > .fields {
2023-09-09 12:44:33 -07:00
display: -moz-flex;
display: -ms-flex;
display: flex;
flex-wrap: wrap;
width: calc(100% + 3em);
margin: -1.5em 0 2em -1.5em;
}
form > .fields > .field {
2023-09-09 12:44:33 -07:00
-moz-flex-grow: 0;
-ms-flex-grow: 0;
flex-grow: 0;
-ms-flex-shrink: 0;
flex-shrink: 0;
padding: 1.5em 0 0 1.5em;
width: calc(100% - 1.5em);
}
form > .fields > .field.half {
2023-09-09 12:44:33 -07:00
width: calc(50% - 0.75em);
}
form > .fields > .field.third {
2023-09-09 12:44:33 -07:00
width: calc(33.3333333333% - 0.5em);
}
form > .fields > .field.quarter {
2023-09-09 12:44:33 -07:00
width: calc(25% - 0.375em);
}
@media screen and (max-width: 736px) {
2023-09-09 12:44:33 -07:00
form > .fields {
width: calc(100% + 3em);
margin: -1.5em 0 2em -1.5em;
}
form > .fields > .field {
padding: 1.5em 0 0 1.5em;
width: calc(100% - 1.5em);
}
form > .fields > .field.half {
width: calc(100% - 1.5em);
}
form > .fields > .field.third {
width: calc(100% - 1.5em);
}
form > .fields > .field.quarter {
width: calc(100% - 1.5em);
}
}
label {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
display: block;
font-size: 0.9em;
font-weight: 300;
margin: 0 0 1em 0;
}
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select,
textarea {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background: #121212;
border: 0;
border-radius: 0;
color: var(--text-color);
display: block;
outline: 0;
padding: 0 1em;
text-decoration: none;
width: 100%;
}
input[type=text]:invalid,
input[type=password]:invalid,
input[type=email]:invalid,
input[type=tel]:invalid,
input[type=search]:invalid,
input[type=url]:invalid,
select:invalid,
textarea:invalid {
box-shadow: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
box-shadow: inset 0 0 0 2px #34a58e;
}
2022-12-01 02:10:16 -08:00
select {
2023-09-09 12:44:33 -07:00
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%2336383c' /%3E%3C/svg%3E");
background-size: 1.25rem;
background-repeat: no-repeat;
background-position: calc(100% - 1rem) center;
height: 2.75em;
padding-right: 2.75em;
text-overflow: ellipsis;
}
2022-12-01 02:10:16 -08:00
select option {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
background: #121212;
}
2022-12-01 02:10:16 -08:00
select:focus::-ms-value {
2023-09-09 12:44:33 -07:00
background-color: transparent;
}
2022-12-01 02:10:16 -08:00
select::-ms-expand {
2023-09-09 12:44:33 -07:00
display: none;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select {
height: 2.75em;
}
2022-12-01 02:10:16 -08:00
textarea {
2023-09-09 12:44:33 -07:00
padding: 0.75em 1em;
}
input[type=checkbox],
input[type=radio] {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
display: block;
float: left;
margin-right: -2em;
opacity: 0;
width: 1em;
z-index: -1;
}
input[type=checkbox] + label,
input[type=radio] + label {
text-decoration: none;
color: var(--text-color);
cursor: pointer;
display: inline-block;
font-size: 1em;
font-weight: 300;
padding-left: 2.4em;
padding-right: 0.75em;
position: relative;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
text-transform: none !important;
font-family: "ForkAwesome";
font-weight: 900;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
background: #121212;
content: "";
display: inline-block;
font-size: 0.8em;
height: 2.0625em;
left: 0;
line-height: 2.0625em;
position: absolute;
text-align: center;
top: 0;
width: 2.0625em;
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
background: var(--href);
border-color: var(--href);
color: var(--text-color);
content: "\f00c";
}
input[type=checkbox]:focus + label:before,
input[type=radio]:focus + label:before {
box-shadow: 0 0 0 2px var(--href);
}
input[type=radio] + label:before {
border-radius: 100%;
}
2022-12-01 02:10:16 -08:00
::-webkit-input-placeholder {
2023-09-09 12:44:33 -07:00
color: var(--text-color) !important;
opacity: 1;
}
2022-12-01 02:10:16 -08:00
:-moz-placeholder {
2023-09-09 12:44:33 -07:00
color: var(--text-color) !important;
opacity: 1;
}
2022-12-01 02:10:16 -08:00
::-moz-placeholder {
2023-09-09 12:44:33 -07:00
color: var(--text-color) !important;
opacity: 1;
}
2022-12-01 02:10:16 -08:00
:-ms-input-placeholder {
2023-09-09 12:44:33 -07:00
color: var(--text-color) !important;
opacity: 1;
}
2022-12-01 02:10:16 -08:00
/* Icon */
.icon {
2023-09-09 12:44:33 -07:00
text-decoration: none;
border-bottom: none;
position: relative;
}
.icon:before {
2023-09-09 12:44:33 -07:00
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
text-transform: none !important;
font-family: "ForkAwesome";
font-weight: 400;
}
.icon > .label {
2023-09-09 12:44:33 -07:00
display: none;
}
.icon:before {
2023-09-09 12:44:33 -07:00
line-height: inherit;
}
.icon.solid:before {
2023-09-09 12:44:33 -07:00
font-weight: 900;
}
.icon.brands:before {
2023-09-09 12:44:33 -07:00
font-family: "ForkAwesome";
}
2022-12-01 02:10:16 -08:00
/* List */
ol {
2023-09-09 12:44:33 -07:00
list-style: decimal;
margin: 0 0 2em 0;
padding-left: 1.25em;
}
2022-12-01 02:10:16 -08:00
ol li {
2023-09-09 12:44:33 -07:00
padding-left: 0.25em;
}
2022-12-01 02:10:16 -08:00
ul {
2023-09-09 12:44:33 -07:00
list-style: disc;
margin: 0 0 2em 0;
padding-left: 1em;
}
2022-12-01 02:10:16 -08:00
ul li {
2023-09-09 12:44:33 -07:00
padding-left: 0.5em;
}
2022-12-01 02:10:16 -08:00
ul.alt {
2023-09-09 12:44:33 -07:00
list-style: none;
padding-left: 0;
}
2022-12-01 02:10:16 -08:00
ul.alt li {
2023-09-09 12:44:33 -07:00
border-top: solid 1px #36383c;
padding: 0.5em 0;
}
2022-12-01 02:10:16 -08:00
ul.alt li:first-child {
2023-09-09 12:44:33 -07:00
border-top: 0;
padding-top: 0;
}
2022-12-01 02:10:16 -08:00
dl {
2023-09-09 12:44:33 -07:00
margin: 0 0 2em 0;
}
2022-12-01 02:10:16 -08:00
dl dt {
2023-09-09 12:44:33 -07:00
display: block;
font-weight: 300;
margin: 0 0 1em 0;
}
2022-12-01 02:10:16 -08:00
dl dd {
2023-09-09 12:44:33 -07:00
margin-left: 2em;
}
2022-12-01 02:10:16 -08:00
/* Actions */
ul.actions {
2023-09-09 12:44:33 -07:00
display: -moz-flex;
display: -ms-flex;
display: flex;
cursor: default;
list-style: none;
margin-left: -1em;
padding-left: 0;
}
2022-12-01 02:10:16 -08:00
ul.actions li {
2023-09-09 12:44:33 -07:00
padding: 0 0 0 1em;
vertical-align: middle;
}
2022-12-01 02:10:16 -08:00
ul.actions.special {
2023-09-09 12:44:33 -07:00
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
width: 100%;
margin-left: 0;
}
2022-12-01 02:10:16 -08:00
ul.actions.special li:first-child {
2023-09-09 12:44:33 -07:00
padding-left: 0;
}
2022-12-01 02:10:16 -08:00
ul.actions.stacked {
2023-09-09 12:44:33 -07:00
-moz-flex-direction: column;
flex-direction: column;
margin-left: 0;
}
2022-12-01 02:10:16 -08:00
ul.actions.stacked li {
2023-09-09 12:44:33 -07:00
padding: 1.3em 0 0 0;
}
ul.actions.stacked li:first-child {
2023-09-09 12:44:33 -07:00
padding-top: 0;
}
2022-12-01 02:10:16 -08:00
ul.actions.fit {
2023-09-09 12:44:33 -07:00
width: calc(100% + 1em);
}
2022-12-01 02:10:16 -08:00
ul.actions.fit li {
2023-09-09 12:44:33 -07:00
-moz-flex-grow: 1;
-ms-flex-grow: 1;
flex-grow: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
width: 100%;
}
2022-12-01 02:10:16 -08:00
ul.actions.fit li > * {
2023-09-09 12:44:33 -07:00
width: 100%;
}
2022-12-01 02:10:16 -08:00
ul.actions.fit.stacked {
2023-09-09 12:44:33 -07:00
width: 100%;
}
2022-12-01 02:10:16 -08:00
@media screen and (max-width: 480px) {
2023-09-09 12:44:33 -07:00
ul.actions:not(.fixed) {
-moz-flex-direction: column;
flex-direction: column;
margin-left: 0;
width: 100% !important;
}
ul.actions:not(.fixed) li {
-moz-flex-grow: 1;
-ms-flex-grow: 1;
flex-grow: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
padding: 1em 0 0 0;
text-align: center;
width: 100%;
}
ul.actions:not(.fixed) li > * {
width: 100%;
}
ul.actions:not(.fixed) li:first-child {
padding-top: 0;
}
ul.actions:not(.fixed) li input[type=submit],
ul.actions:not(.fixed) li input[type=reset],
ul.actions:not(.fixed) li input[type=button],
ul.actions:not(.fixed) li button,
ul.actions:not(.fixed) li .button {
width: 100%;
}
ul.actions:not(.fixed) li input[type=submit].icon:before,
ul.actions:not(.fixed) li input[type=reset].icon:before,
ul.actions:not(.fixed) li input[type=button].icon:before,
ul.actions:not(.fixed) li button.icon:before,
ul.actions:not(.fixed) li .button.icon:before {
margin-left: -0.5rem;
}
}
/* Icons */
ul.icons {
2023-09-09 12:44:33 -07:00
cursor: default;
list-style: none;
padding-left: 0;
}
ul.icons li {
2023-09-09 12:44:33 -07:00
display: inline-block;
padding: 0 1em 0 0;
}
ul.icons li:last-child {
2023-09-09 12:44:33 -07:00
padding-right: 0;
}
ul.icons li .icon {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
}
ul.icons li .icon:before {
2023-09-09 12:44:33 -07:00
font-size: 1.5em;
}
2022-12-01 02:10:16 -08:00
/* Table */
.table-wrapper {
2023-09-09 12:44:33 -07:00
-webkit-overflow-scrolling: touch;
overflow-x: auto;
}
2022-12-01 02:10:16 -08:00
table {
2023-09-09 12:44:33 -07:00
margin: 0 0 2em 0;
width: 100%;
}
2022-12-01 02:10:16 -08:00
table tbody tr {
2023-09-09 12:44:33 -07:00
border: solid 1px #36383c;
border-left: 0;
border-right: 0;
}
2022-12-01 02:10:16 -08:00
2023-09-09 12:44:33 -07:00
table tbody tr:nth-child(2n+1) {
background-color: #121212;
}
2022-12-01 02:10:16 -08:00
table td {
2023-09-09 12:44:33 -07:00
padding: 0.75em 0.75em;
}
2022-12-01 02:10:16 -08:00
table th {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
font-size: 0.9em;
font-weight: 300;
padding: 0 0.75em 0.75em 0.75em;
text-align: left;
}
table thead {
2023-09-09 12:44:33 -07:00
border-bottom: solid 2px #36383c;
}
table tfoot {
2023-09-09 12:44:33 -07:00
border-top: solid 2px #36383c;
}
table.alt {
2023-09-09 12:44:33 -07:00
border-collapse: separate;
}
table.alt tbody tr td {
2023-09-09 12:44:33 -07:00
border: solid 1px #36383c;
border-left-width: 0;
border-top-width: 0;
}
table.alt tbody tr td:first-child {
2023-09-09 12:44:33 -07:00
border-left-width: 1px;
}
table.alt tbody tr:first-child td {
2023-09-09 12:44:33 -07:00
border-top-width: 1px;
}
table.alt thead {
2023-09-09 12:44:33 -07:00
border-bottom: 0;
}
table.alt tfoot {
2023-09-09 12:44:33 -07:00
border-top: 0;
}
2022-12-01 02:10:16 -08:00
/* Panel */
.panel {
2023-09-09 12:44:33 -07:00
padding: 4em 4em 2em 4em;
transform: translateY(100vh);
transition: transform 0.5s ease;
-webkit-overflow-scrolling: touch;
background: rgba(36, 38, 41, 0.975);
bottom: 4em;
left: 0;
max-height: calc(80vh - 4em);
overflow-y: auto;
position: fixed;
width: 100%;
z-index: 10001;
}
.panel.active {
2023-09-09 12:44:33 -07:00
transform: translateY(1px);
}
.panel > .inner {
2023-09-09 12:44:33 -07:00
margin: 0 auto;
max-width: 100%;
width: 75em;
}
.panel > .inner.split {
2023-09-09 12:44:33 -07:00
display: -moz-flex;
display: -ms-flex;
display: flex;
}
.panel > .inner.split > div {
2023-09-09 12:44:33 -07:00
margin-left: 4em;
width: 50%;
}
.panel > .inner.split > :first-child {
2023-09-09 12:44:33 -07:00
margin-left: 0;
}
.panel > .closer {
2023-09-09 12:44:33 -07:00
transition: opacity 0.2s ease-in-out;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPg0KCTxzdHlsZT4NCgkJbGluZSB7DQoJCQlzdHJva2U6ICNmZmY7DQoJCQlzdHJva2Utd2lkdGg6IDEuNXB4Ow0KCQl9DQoJPC9zdHlsZT4NCgk8bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+DQoJPGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPg0KPC9zdmc+");
background-position: center;
background-repeat: no-repeat;
background-size: 3em;
cursor: pointer;
height: 5em;
opacity: 0.25;
position: absolute;
right: 0;
top: 0;
width: 5em;
z-index: 2;
}
.panel > .closer:hover {
2023-09-09 12:44:33 -07:00
opacity: 1;
}
@media screen and (max-width: 1280px) {
2023-09-09 12:44:33 -07:00
.panel {
padding: 3em 3em 1em 3em;
}
.panel > .inner.split > div {
margin-left: 3em;
}
.panel > .closer {
background-size: 2.5em;
background-position: 75% 25%;
}
}
@media screen and (max-width: 980px) {
2023-09-09 12:44:33 -07:00
.panel > .inner.split {
-moz-flex-direction: column;
flex-direction: column;
}
.panel > .inner.split > div {
margin-left: 0;
width: 100%;
}
}
2022-12-01 02:10:16 -08:00
/* Poptrox Popup */
.poptrox-overlay {
2023-09-09 12:44:33 -07:00
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.poptrox-popup {
2023-09-09 12:44:33 -07:00
background: rgba(31, 34, 36, 0.925);
box-shadow: 0 1em 3em 0.5em rgba(0, 0, 0, 0.25);
cursor: default;
}
.poptrox-popup:before {
2023-09-09 12:44:33 -07:00
transition: opacity 0.2s ease-in-out;
background-image: linear-gradient(to left, rgba(31, 34, 36, 0.35), rgba(31, 34, 36, 0) 10em, rgba(31, 34, 36, 0)), linear-gradient(to right, rgba(31, 34, 36, 0.35), rgba(31, 34, 36, 0) 10em, rgba(31, 34, 36, 0));
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
opacity: 1;
}
2022-12-01 02:10:16 -08:00
.poptrox-popup .closer {
2023-09-09 12:44:33 -07:00
transition: opacity 0.2s ease-in-out;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPg0KCTxzdHlsZT4NCgkJbGluZSB7DQoJCQlzdHJva2U6ICNmZmY7DQoJCQlzdHJva2Utd2lkdGg6IDEuNXB4Ow0KCQl9DQoJPC9zdHlsZT4NCgk8bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+DQoJPGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPg0KPC9zdmc+");
background-position: center;
background-repeat: no-repeat;
background-size: 3em;
height: 5em;
opacity: 0;
position: absolute;
right: 0;
top: 0;
width: 5em;
z-index: 2;
}
.poptrox-popup .nav-previous,
2023-09-09 12:44:33 -07:00
.poptrox-popup .nav-next {
transition: opacity 0.2s ease-in-out;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPg0KCTxzdHlsZT4NCgkJbGluZSB7DQoJCQlzdHJva2U6ICNmZmY7DQoJCQlzdHJva2Utd2lkdGg6IDFweDsNCgkJfQ0KCTwvc3R5bGU+DQoJPGxpbmUgeDE9IjMyIiB5MT0iMTYiIHgyPSI2NCIgeTI9IjQ4IiAvPg0KCTxsaW5lIHgxPSIzMiIgeTE9IjgwIiB4Mj0iNjQiIHkyPSI0OCIgLz4NCg0KPC9zdmc+");
background-position: center;
background-repeat: no-repeat;
background-size: 5em;
cursor: pointer;
height: 8em;
margin-top: -4em;
opacity: 0;
position: absolute;
top: 50%;
width: 6em;
z-index: 2;
}
.poptrox-popup .nav-previous {
2023-09-09 12:44:33 -07:00
transform: scaleX(-1);
left: 0;
}
.poptrox-popup .nav-next {
2023-09-09 12:44:33 -07:00
right: 0;
}
.poptrox-popup .caption {
2023-09-09 12:44:33 -07:00
padding: 2em 2em 0.1em 2em;
background-image: linear-gradient(to top, rgba(16, 16, 16, 0.45) 25%, rgba(16, 16, 16, 0) 100%);
bottom: 0;
cursor: default;
left: 0;
position: absolute;
text-align: left;
width: 100%;
z-index: 2;
}
2023-09-09 12:44:33 -07:00
.poptrox-popup .caption h2,
.poptrox-popup .caption h3,
.poptrox-popup .caption h4,
.poptrox-popup .caption h5,
.poptrox-popup .caption h6 {
margin: 0 0 0.5em 0;
}
.poptrox-popup .caption p {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
}
.poptrox-popup .loader {
2023-09-09 12:44:33 -07:00
animation: spinner 1s infinite linear !important;
background-image: url("data:image/webp;base64,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
2023-09-09 12:44:33 -07:00
background-position: center;
background-repeat: no-repeat;
background-size: contain;
display: block;
font-size: 2em;
height: 2em;
left: 50%;
line-height: 2em;
margin: -1em 0 0 -1em;
opacity: 0.25;
position: absolute;
text-align: center;
top: 50%;
width: 2em;
}
.poptrox-popup:hover .closer,
2023-09-09 12:44:33 -07:00
.poptrox-popup:hover .nav-previous,
.poptrox-popup:hover .nav-next {
opacity: 0.5;
}
2022-12-01 02:10:16 -08:00
.poptrox-popup:hover .closer:hover,
2023-09-09 12:44:33 -07:00
.poptrox-popup:hover .nav-previous:hover,
.poptrox-popup:hover .nav-next:hover {
opacity: 1;
}
2022-12-01 02:10:16 -08:00
.poptrox-popup.loading:before {
2023-09-09 12:44:33 -07:00
opacity: 0;
}
2022-12-01 02:10:16 -08:00
body.touch .poptrox-popup .closer,
2023-09-09 12:44:33 -07:00
body.touch .poptrox-popup .nav-previous,
body.touch .poptrox-popup .nav-next {
opacity: 1 !important;
}
2022-12-01 02:10:16 -08:00
@media screen and (max-width: 980px) {
2023-09-09 12:44:33 -07:00
.poptrox-popup .closer {
background-size: 3em;
}
.poptrox-popup .nav-previous,
.poptrox-popup .nav-next {
background-size: 4em;
}
}
2022-12-01 02:10:16 -08:00
/* Wrapper */
#wrapper {
2023-09-09 12:44:33 -07:00
transition: -moz-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
position: relative;
}
#wrapper:after {
2023-09-09 12:44:33 -07:00
pointer-events: none;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.5);
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #wrapper:after {
2023-09-09 12:44:33 -07:00
background: rgba(36, 38, 41, 0.8);
}
body.modal-active #wrapper {
2023-09-09 12:44:33 -07:00
-moz-filter: blur(8px);
-ms-filter: blur(8px);
filter: blur(8px);
}
body.modal-active #wrapper:after {
2023-09-09 12:44:33 -07:00
pointer-events: auto;
opacity: 1;
visibility: visible;
z-index: 10003;
}
#wrapper:before {
2023-09-09 12:44:33 -07:00
animation: spinner 1s infinite linear !important;
pointer-events: none;
transition: top 0.75s ease-in-out, opacity 0.35s ease-out, visibility 0.35s;
background-image: url("data:image/webp;base64,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
background-position: center;
background-repeat: no-repeat;
background-size: contain;
content: "";
display: block;
font-size: 2em;
height: 2em;
left: 50%;
line-height: 2em;
margin: -1em 0 0 -1em;
opacity: 0;
position: fixed;
text-align: center;
top: 75%;
visibility: hidden;
width: 2em;
}
body.is-preload #wrapper:before {
2023-09-09 12:44:33 -07:00
transition: opacity 1s ease-out !important;
transition-delay: 0.5s !important;
opacity: 0.25;
top: 50%;
visibility: visible;
}
2022-12-01 02:10:16 -08:00
/* Header */
body {
2023-09-09 12:44:33 -07:00
padding: 0 0 4em 0;
}
#header {
2023-09-09 12:44:33 -07:00
transform: translateY(0);
transition: transform 1s ease;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
background: #1f2224;
bottom: -1em;
height: 5em;
left: 0;
line-height: 4em;
padding: 0 1.5em;
position: fixed;
user-select: none;
width: 100%;
z-index: 10002;
}
body.is-preload #header {
2023-09-09 12:44:33 -07:00
transform: translateY(4em);
}
#header h1 {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
display: inline-block;
font-size: 1em;
line-height: 1;
margin: 0;
vertical-align: middle;
}
#header h1 a {
2023-09-09 12:44:33 -07:00
border: 0;
color: inherit;
}
#header h1 a:hover {
2023-09-09 12:44:33 -07:00
color: inherit !important;
}
#header nav {
2023-09-09 12:44:33 -07:00
position: absolute;
right: 0;
top: 0;
}
#header nav > ul {
2023-09-09 12:44:33 -07:00
list-style: none;
margin: 0;
padding: 0;
}
#header nav > ul > li {
2023-09-09 12:44:33 -07:00
display: inline-block;
padding: 0;
}
#header nav > ul > li a {
2023-09-09 12:44:33 -07:00
transition: background-color 0.5s ease;
border: 0;
color: var(--text-color);
display: inline-block;
letter-spacing: 0.1em;
padding: 0 1.65em;
text-transform: both;
}
#header nav > ul > li a.icon:before {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
float: right;
margin-left: 0.75em;
}
#header nav > ul > li a:hover {
2023-09-09 12:44:33 -07:00
color: var(--text-color) !important;
}
#header nav > ul > li a.active {
2023-09-09 12:44:33 -07:00
background-color: #121212;
}
@media screen and (max-width: 736px) {
2023-09-09 12:44:33 -07:00
body.is-preload #header {
transform: translateY(-3.4em);
}
#header h1 {
font-size: 0.9em;
}
#header nav > ul > li a {
font-size: 0.9em;
padding: 0 1.15em;
}
}
2022-12-01 02:10:16 -08:00
/* Main */
#main {
2023-09-09 12:44:33 -07:00
transition: -moz-filter 0.5s ease, -ms-filter 0.5s ease, filter 0.5s ease;
display: -moz-flex;
display: -ms-flex;
display: flex;
flex-wrap: wrap;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
2022-12-01 02:10:16 -08:00
#main .thumb {
2023-09-09 12:44:33 -07:00
transition: opacity 1.25s ease-in-out;
pointer-events: auto;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
opacity: 1;
overflow: hidden;
position: relative;
}
2022-12-01 02:10:16 -08:00
#main .thumb:after {
2023-09-09 12:44:33 -07:00
background-image: linear-gradient(to top, rgba(10, 17, 25, 0.35) 5%, rgba(10, 17, 25, 0) 35%);
pointer-events: none;
background-size: cover;
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#main .thumb > .image {
2023-09-09 12:44:33 -07:00
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
#main .thumb > h2 {
2023-09-09 12:44:33 -07:00
pointer-events: none;
bottom: 1.875em;
font-size: 0.8em;
left: 2.1875em;
margin: 0;
position: absolute;
z-index: 1;
}
#main .thumb > p {
2023-09-09 12:44:33 -07:00
display: none;
}
#main:after {
2023-09-09 12:44:33 -07:00
pointer-events: none;
transition: opacity 0.5s ease, visibility 0.5s;
background: rgba(36, 38, 41, 0.25);
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 100%;
z-index: 1;
}
body.ie #main:after {
2023-09-09 12:44:33 -07:00
background: rgba(36, 38, 41, 0.55);
}
body.content-active #main {
2023-09-09 12:44:33 -07:00
-moz-filter: blur(6px);
-ms-filter: blur(6px);
filter: blur(6px);
}
body.content-active #main:after {
2023-09-09 12:44:33 -07:00
pointer-events: auto;
opacity: 1;
visibility: visible;
}
body.is-preload #main .thumb {
2023-09-09 12:44:33 -07:00
pointer-events: none;
opacity: 0;
}
#main .thumb {
2023-09-09 12:44:33 -07:00
transition-delay: 2.525s;
height: calc(40vh - 2em);
min-height: 20em;
width: 25%;
}
#main .thumb:nth-child(1) {
2023-09-09 12:44:33 -07:00
transition-delay: 0.65s;
}
#main .thumb:nth-child(2) {
2023-09-09 12:44:33 -07:00
transition-delay: 0.8s;
}
#main .thumb:nth-child(3) {
2023-09-09 12:44:33 -07:00
transition-delay: 0.95s;
}
#main .thumb:nth-child(4) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.1s;
}
#main .thumb:nth-child(5) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.25s;
}
#main .thumb:nth-child(6) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.4s;
}
#main .thumb:nth-child(7) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.55s;
}
#main .thumb:nth-child(8) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.7s;
}
#main .thumb:nth-child(9) {
2023-09-09 12:44:33 -07:00
transition-delay: 1.85s;
}
#main .thumb:nth-child(10) {
2023-09-09 12:44:33 -07:00
transition-delay: 2s;
}
#main .thumb:nth-child(11) {
2023-09-09 12:44:33 -07:00
transition-delay: 2.15s;
}
#main .thumb:nth-child(12) {
2023-09-09 12:44:33 -07:00
transition-delay: 2.3s;
}
@media screen and (max-width: 1680px) {
2023-09-09 12:44:33 -07:00
#main .thumb {
transition-delay: 2.075s;
height: calc(40vh - 2em);
min-height: 20em;
width: 33.33333%;
}
#main .thumb:nth-child(1) {
transition-delay: 0.65s;
}
#main .thumb:nth-child(2) {
transition-delay: 0.8s;
}
#main .thumb:nth-child(3) {
transition-delay: 0.95s;
}
#main .thumb:nth-child(4) {
transition-delay: 1.1s;
}
#main .thumb:nth-child(5) {
transition-delay: 1.25s;
}
#main .thumb:nth-child(6) {
transition-delay: 1.4s;
}
#main .thumb:nth-child(7) {
transition-delay: 1.55s;
}
#main .thumb:nth-child(8) {
transition-delay: 1.7s;
}
#main .thumb:nth-child(9) {
transition-delay: 1.85s;
}
}
@media screen and (max-width: 1280px) {
2023-09-09 12:44:33 -07:00
#main .thumb {
transition-delay: 1.625s;
height: calc(40vh - 2em);
min-height: 20em;
width: 50%;
}
#main .thumb:nth-child(1) {
transition-delay: 0.65s;
}
#main .thumb:nth-child(2) {
transition-delay: 0.8s;
}
#main .thumb:nth-child(3) {
transition-delay: 0.95s;
}
#main .thumb:nth-child(4) {
transition-delay: 1.1s;
}
#main .thumb:nth-child(5) {
transition-delay: 1.25s;
}
#main .thumb:nth-child(6) {
transition-delay: 1.4s;
}
}
@media screen and (max-width: 980px) {
2023-09-09 12:44:33 -07:00
#main .thumb {
transition-delay: 2.075s;
height: calc(28.57143vh - 1.33333em);
min-height: 18em;
width: 50%;
}
#main .thumb:nth-child(1) {
transition-delay: 0.65s;
}
#main .thumb:nth-child(2) {
transition-delay: 0.8s;
}
#main .thumb:nth-child(3) {
transition-delay: 0.95s;
}
#main .thumb:nth-child(4) {
transition-delay: 1.1s;
}
#main .thumb:nth-child(5) {
transition-delay: 1.25s;
}
#main .thumb:nth-child(6) {
transition-delay: 1.4s;
}
#main .thumb:nth-child(7) {
transition-delay: 1.55s;
}
#main .thumb:nth-child(8) {
transition-delay: 1.7s;
}
#main .thumb:nth-child(9) {
transition-delay: 1.85s;
}
}
@media screen and (max-width: 480px) {
2023-09-09 12:44:33 -07:00
#main .thumb {
transition-delay: 1.175s;
height: calc(40vh - 2em);
min-height: 18em;
width: 100%;
}
#main .thumb:nth-child(1) {
transition-delay: 0.65s;
}
#main .thumb:nth-child(2) {
transition-delay: 0.8s;
}
#main .thumb:nth-child(3) {
transition-delay: 0.95s;
}
}
/* Footer */
#footer p.copyright {
2023-09-09 12:44:33 -07:00
color: var(--text-color);
font-size: 0.9em;
}
#footer p.copyright a {
2023-09-09 12:44:33 -07:00
color: inherit;
}