New things.

This commit is contained in:
calcu1on
2025-01-26 22:00:21 -05:00
parent e7a8b1b66f
commit a5143c75c0
195 changed files with 5187 additions and 1270 deletions

View File

@@ -39,6 +39,10 @@ h4 {
#block-dchadwick-primary-local-tasks {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
z-index: 9999;
}
#block-dchadwick-primary-local-tasks > ul {
margin: 0;
@@ -199,13 +203,13 @@ blockquote {
.hero-caption {
z-index: 2;
width: 400px;
width: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 2rem;
background: rgba(254, 215, 101, 0.93);
padding: 2rem 8rem 2rem 2rem;
padding: 2rem;
border-radius: 10px;
}
@media screen and (max-width: 767px) {

View File

@@ -17,7 +17,8 @@ function dchadwick_preprocess_node__article(&$vars) {
}
function dchadwick_page_attachments_alter(&$page) {
$page['#attached']['library'][] = 'dchadwick/brainjs';
// Attach brain.js to all pages? No reason at the moment.
/* $page['#attached']['library'][] = 'dchadwick/brainjs'; */
}
function dchadwick_preprocess_node__fighter(&$vars) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 202 KiB

View File

@@ -31,13 +31,13 @@
.hero-caption {
z-index: 2;
width: 400px;
width: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 2rem;
background: rgba(254, 215, 101, 0.93);
padding: 2rem 8rem 2rem 2rem;
padding: 2rem;
border-radius: 10px;
@media screen and (max-width: 767px) {

View File

@@ -1,5 +1,9 @@
#block-dchadwick-primary-local-tasks {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
z-index: 9999;
> ul {
margin: 0;

View File

@@ -1,6 +1,6 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
// @tailwind base;
// @tailwind components;
// @tailwind utilities;
// Colors.
:root {

View File

@@ -1,12 +0,0 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/**.{scss}"],
theme: {
extend: {},
},
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}