Migration to new site.

This commit is contained in:
2025-02-23 21:51:24 -06:00
parent 58a4b77b90
commit 90e195a670
119 changed files with 9517 additions and 9548 deletions

View File

@ -0,0 +1,35 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Footer */
#footer {
@include vendor('align-self', 'flex-end');
width: 100%;
padding: _size(element-margin) 0 0 0;
color: rgba(255,255,255,0.75);
cursor: default;
text-align: center;
.copyright {
margin: 0;
padding: 0;
font-size: 0.9em;
list-style: none;
li {
display: inline-block;
margin: 0 0 0 (0.85em - (_size(letter-spacing) * 2));
padding: 0 0 0 0.85em;
border-left: solid _size(border-width) rgba(255,255,255,0.5);
line-height: 1;
&:first-child {
border-left: 0;
}
}
}
}

View File

@ -0,0 +1,67 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Main */
#main {
@include vendor('transform-origin', '50% 50%');
@include vendor('transform', 'rotateX(0deg)');
@include vendor('transition', (
'opacity #{_duration(main)} ease',
'transform #{_duration(main)} ease'
));
@include padding(4.5em, 3em);
background: _palette(bg);
border-radius: _size(border-radius);
cursor: default;
max-width: 100%;
opacity: 0.95;
position: relative;
text-align: center;
width: 27em;
.avatar {
position: relative;
display: block;
margin-bottom: _size(element-margin);
img {
display: block;
margin: 0 auto;
border-radius: 100%;
box-shadow: 0 0 0 1.5em _palette(bg);
}
&:before {
content: '';
display: block;
position: absolute;
top: 50%;
left: -3em;
width: calc(100% + 6em);
height: _size(border-width);
z-index: -1;
background: _palette(border);
}
}
@include breakpoint('<=xsmall') {
@include padding(4em, 2em);
width: 100%;
.avatar {
&:before {
left: -2em;
width: calc(100% + 4em);
}
}
}
body.is-preload & {
@include vendor('transform', 'rotateX(15deg)');
opacity: 0;
}
}

View File

@ -0,0 +1,36 @@
///
/// Identity by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Wrapper */
#wrapper {
@include vendor('display', 'flex');
@include vendor('align-items', 'center');
@include vendor('justify-content', 'space-between');
@include vendor('flex-direction', 'column');
@include vendor('perspective', '1000px');
position: relative;
min-height: 100%;
padding: _size(element-margin);
z-index: 2;
> * {
z-index: 1;
}
&:before {
content: '';
display: block;
}
@include breakpoint('<=xxsmall') {
padding: (_size(element-margin) * 0.5);
}
body.is-ie & {
height: 100%;
}
}