diff options
Diffstat (limited to 'server/src/routes/ui/style')
-rw-r--r-- | server/src/routes/ui/style/directorypage.css | 6 | ||||
-rw-r--r-- | server/src/routes/ui/style/forms.css | 6 | ||||
-rw-r--r-- | server/src/routes/ui/style/itempage.css | 7 | ||||
-rw-r--r-- | server/src/routes/ui/style/layout.css | 6 | ||||
-rw-r--r-- | server/src/routes/ui/style/mod.rs | 6 | ||||
-rw-r--r-- | server/src/routes/ui/style/player.css | 6 | ||||
-rw-r--r-- | server/src/routes/ui/style/transition.js | 5 |
7 files changed, 41 insertions, 1 deletions
diff --git a/server/src/routes/ui/style/directorypage.css b/server/src/routes/ui/style/directorypage.css index 2773e3c..e46a1fe 100644 --- a/server/src/routes/ui/style/directorypage.css +++ b/server/src/routes/ui/style/directorypage.css @@ -1,3 +1,9 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ .page.dir { padding: 1em; padding-left: 3em; diff --git a/server/src/routes/ui/style/forms.css b/server/src/routes/ui/style/forms.css index 959a62e..ab7ca7f 100644 --- a/server/src/routes/ui/style/forms.css +++ b/server/src/routes/ui/style/forms.css @@ -1,3 +1,9 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ input[type="text"], input[type="password"] { border-radius: 7px; diff --git a/server/src/routes/ui/style/itempage.css b/server/src/routes/ui/style/itempage.css index 284d74f..ad32831 100644 --- a/server/src/routes/ui/style/itempage.css +++ b/server/src/routes/ui/style/itempage.css @@ -1,4 +1,9 @@ - +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ .backdrop { width: calc(100% + 2 * var(--main-side-margin)); height: calc(var(--backdrop-height) + 5em); diff --git a/server/src/routes/ui/style/layout.css b/server/src/routes/ui/style/layout.css index f392d04..f7a21c2 100644 --- a/server/src/routes/ui/style/layout.css +++ b/server/src/routes/ui/style/layout.css @@ -1,3 +1,9 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ @font-face { font-family: "Cantarell"; src: url(/assets/cantarell.woff2) format("woff2"); diff --git a/server/src/routes/ui/style/mod.rs b/server/src/routes/ui/style/mod.rs index 0891d59..93b6708 100644 --- a/server/src/routes/ui/style/mod.rs +++ b/server/src/routes/ui/style/mod.rs @@ -1,3 +1,9 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ use rocket::{get, http::ContentType}; use std::{ fs::{read_to_string, File}, diff --git a/server/src/routes/ui/style/player.css b/server/src/routes/ui/style/player.css index 0a9c16f..3e8cea1 100644 --- a/server/src/routes/ui/style/player.css +++ b/server/src/routes/ui/style/player.css @@ -1,3 +1,9 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> + Copyright (C) 2023 tpart +*/ video { width: 100%; } diff --git a/server/src/routes/ui/style/transition.js b/server/src/routes/ui/style/transition.js index 8a71f14..6f558fb 100644 --- a/server/src/routes/ui/style/transition.js +++ b/server/src/routes/ui/style/transition.js @@ -1,3 +1,8 @@ +/* + This file is part of jellything (https://codeberg.org/metamuffin/jellything) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> +*/ /// <reference lib="dom" /> const duration = 0.2 |