Update Theme and Links

Main Update to Design Theme Package and Update to links
This commit is contained in:
2025-04-24 19:53:17 +01:00
parent 41f9f1f86c
commit 920bc9070b
62 changed files with 14350 additions and 4209 deletions

View File

@@ -17,18 +17,27 @@
}
// Ensures page width is always >=320px.
@include breakpoint(xsmall) {
@include breakpoint('<=xsmall') {
html, body {
min-width: 320px;
}
}
// Set box model to border-box.
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background: _palette(bg);
// Prevents animation/transition "flicker" on page load.
// Automatically added/removed by js/main.js.
&.is-loading {
// Stops initial animations until page loads.
&.is-preload {
*, *:before, *:after {
@include vendor('animation', 'none !important');
@include vendor('transition', 'none !important');

View File

@@ -0,0 +1,76 @@
///
/// Story by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
// Reset.
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style:none;
}
blockquote, q {
quotes: none;
&:before,
&:after {
content: '';
content: none;
}
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
-webkit-text-size-adjust: none;
}
mark {
background-color: transparent;
color: inherit;
}
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input, select, textarea {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
}

View File

@@ -9,19 +9,19 @@
html {
font-size: 18pt;
@include breakpoint(xlarge) {
@include breakpoint('<=xlarge') {
font-size: 14pt;
}
@include breakpoint(large) {
@include breakpoint('<=large') {
font-size: 12pt;
}
@include breakpoint(small) {
@include breakpoint('<=small') {
font-size: 11pt;
}
@include breakpoint(xxsmall) {
@include breakpoint('<=xxsmall') {
font-size: 10pt;
}
}
@@ -163,7 +163,7 @@
text-align: right;
}
@include breakpoint(small) {
@include breakpoint('<=small') {
p {
&.major {
font-size: 1.1rem;