diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-02-27 09:34:13 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-02-27 09:34:13 -0500 |
| commit | cc2f3c12f3af4a4f8de1a1d0647a8e98a6d62dce (patch) | |
| tree | 92a497ea51d48e4d731a11a327dea3688b378b27 | |
| parent | fixup css (diff) | |
| download | website-cc2f3c12f3af4a4f8de1a1d0647a8e98a6d62dce.tar.gz website-cc2f3c12f3af4a4f8de1a1d0647a8e98a6d62dce.tar.bz2 website-cc2f3c12f3af4a4f8de1a1d0647a8e98a6d62dce.zip | |
fix some broken css on ie6, make john use http if on http
Diffstat (limited to '')
| m--------- | site | 0 | ||||
| -rw-r--r-- | src/scss/main.scss | 4 | ||||
| -rw-r--r-- | src/web/_views/footer.php | 2 | ||||
| -rw-r--r-- | src/web/_views/head.php | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/site b/site -Subproject 15a66eed399262b5f78c71bce46a9d5738338d7 +Subproject 4fbb1ea607a233db891b147536d4d2aa649b2e4 diff --git a/src/scss/main.scss b/src/scss/main.scss index 3cf410f..3a3a149 100644 --- a/src/scss/main.scss +++ b/src/scss/main.scss @@ -193,8 +193,9 @@ body, @include display-table($inner-gap); li { + float: left; @include display-table-cell; - padding: $inner-gap / 2; + padding: $inner-gap; a { @include text-decoration(none); @@ -272,6 +273,7 @@ body, #header .content #nav { li { display: block; + float: none; } } } diff --git a/src/web/_views/footer.php b/src/web/_views/footer.php index 8807160..70b1b13 100644 --- a/src/web/_views/footer.php +++ b/src/web/_views/footer.php @@ -41,7 +41,7 @@ <?php /* hack to disable firefox cookie warning*/?> sandbox="allow-scripts" title="<?=lang('john_title')?>" - src="https://john.citrons.xyz/embed?ref=freya.cat" + src="<?=$this->get_scheme()?>://john.citrons.xyz/embed?ref=freya.cat" ></iframe> <iframe height="40" diff --git a/src/web/_views/head.php b/src/web/_views/head.php index 73bd3f6..4d16a1b 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -39,7 +39,7 @@ <?php if ($current_app != 'bucket'): ?> <link rel="preload" href="<?=$this->get_url("public/font/FontStuck-Extended.woff2")?>" as="font" type="font/woff2" crossorigin> <link rel="preload" href="<?=$this->get_url("public/font/CourierNew.woff2")?>" as="font" type="font/woff2" crossorigin> - <link rel="preconnect" href="https://john.citrons.xyz"> + <link rel="preconnect" href="<?=$this->get_scheme()?>://john.citrons.xyz"> <?php else: ?> <link rel="preload" href="<?=$this->get_url("public/font/Merriweather.woff2")?>" as="font" type="font/woff2" crossorigin> <?php endif ?> |