diff options
| author | Jason McCormick <jdm@mfamily.org> | 2025-10-09 12:49:05 -0400 |
|---|---|---|
| committer | Jason McCormick <jdm@mfamily.org> | 2025-10-09 12:49:05 -0400 |
| commit | 3c02dc1c0cd480fc11647ec0f7900d4034a00cc4 (patch) | |
| tree | 468f503c5b64dec012ca3f09350a85aa500d20d5 /assets/sass/noscript.scss | |
initial add
Diffstat (limited to 'assets/sass/noscript.scss')
| -rw-r--r-- | assets/sass/noscript.scss | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/assets/sass/noscript.scss b/assets/sass/noscript.scss new file mode 100644 index 0000000..b101db7 --- /dev/null +++ b/assets/sass/noscript.scss @@ -0,0 +1,50 @@ +@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@import 'libs/vendor';
+@import 'libs/breakpoints';
+
+/*
+ Dimension by HTML5 UP
+ html5up.net | @ajlkn
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* BG */
+
+ #bg {
+ body.is-preload & {
+ &:before {
+ background-color: transparent;
+ }
+ }
+ }
+
+/* Header */
+
+ #header {
+ body.is-preload & {
+ > * {
+ opacity: 1;
+ }
+
+ @include vendor('filter', 'none');
+
+ .content {
+ .inner {
+ max-height: none;
+ padding: 3rem 2rem;
+ opacity: 1;
+ }
+ }
+ }
+ }
+
+/* Main */
+
+ #main {
+ article {
+ opacity: 1;
+ margin: (_size(element-margin) * 2) 0 0 0;
+ }
+ }
\ No newline at end of file |
