summaryrefslogtreecommitdiff
path: root/clams-server/src/main/resources/public/css/home.css
diff options
context:
space:
mode:
authorElias Haugsbakk <[email protected]>2026-07-01 14:05:14 +0200
committerElias Haugsbakk <[email protected]>2026-07-01 14:05:14 +0200
commitc4da920843972b6571e978cdc9f9278eb87b7398 (patch)
treef972778f7cab4e4b231f5adc7450d590fa6d0fae /clams-server/src/main/resources/public/css/home.css
parent5ed99f3c87f0337ffac03dd1e45073fbc7f63b68 (diff)
add HTML, CSS and basic routing
Diffstat (limited to 'clams-server/src/main/resources/public/css/home.css')
-rw-r--r--clams-server/src/main/resources/public/css/home.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/clams-server/src/main/resources/public/css/home.css b/clams-server/src/main/resources/public/css/home.css
new file mode 100644
index 0000000..c3679b4
--- /dev/null
+++ b/clams-server/src/main/resources/public/css/home.css
@@ -0,0 +1,27 @@
+.profile-img {
+ border: 3px solid var(--text-color);
+ border-radius: 20px;
+ width: 200px;
+ display: block;
+ margin-left: auto;
+ margin-bottom: 20px;
+}
+
+.right-column a {
+ font-size: 1.2rem;
+}
+
+.description {
+ display: block;
+ font-size: 0.9rem;
+ opacity: 0.8;
+ white-space: normal;
+ overflow: visible;
+ word-wrap: break-word;
+}
+
+@media (max-width: 600px) {
+ .profile-img {
+ margin: 0 auto 20px auto;
+ }
+}