From 627a84c28c7d6bc8859e2c9fcef306e925b26172 Mon Sep 17 00:00:00 2001 From: Florian Eisenmenger Date: Thu, 18 Jan 2024 14:48:44 +0100 Subject: [PATCH] css --- matsen-tool/src/app/home/home.component.html | 71 +++++++++++++++----- matsen-tool/src/app/home/home.component.scss | 2 +- matsen-tool/src/styles.scss | 32 +++++++++ 3 files changed, 89 insertions(+), 16 deletions(-) diff --git a/matsen-tool/src/app/home/home.component.html b/matsen-tool/src/app/home/home.component.html index 6e4e0fe..3ec73c3 100644 --- a/matsen-tool/src/app/home/home.component.html +++ b/matsen-tool/src/app/home/home.component.html @@ -1,5 +1,5 @@ 
-
+

Hi {{ user?.firstName }}!

Manage Users

@@ -7,25 +7,25 @@
-
+
-
-
-
+
- + +
+ +

Meine Aufgaben

+ +
+ +
+
+

Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.

+ +
+
+
+ +
+ +
+
+

Some placeholder content for the collapse component. This panel is hidden by default but revealed when the user activates the relevant trigger.

+ +
+
+
+ +
+
  • Posts
  • diff --git a/matsen-tool/src/app/home/home.component.scss b/matsen-tool/src/app/home/home.component.scss index 2fcc2b5..147a600 100644 --- a/matsen-tool/src/app/home/home.component.scss +++ b/matsen-tool/src/app/home/home.component.scss @@ -21,7 +21,7 @@ font-size: 50px; } } - p { + h3 { right: 10px; bottom: 10px; } diff --git a/matsen-tool/src/styles.scss b/matsen-tool/src/styles.scss index 50803c2..f37e466 100644 --- a/matsen-tool/src/styles.scss +++ b/matsen-tool/src/styles.scss @@ -3,6 +3,10 @@ html, body { height: 100%; } body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } +@mixin transition { + transition: all 0.3s ease-out; +} + .app-container { min-height: 320px; overflow: hidden; @@ -13,3 +17,31 @@ body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } text-align: center; box-sizing: content-box; } + +.spt-accordion { + .info { + right: 0; + top: 0; + } + .due-date { + + } + .importance { + + } + + [data-type="user-tool"] { + cursor: pointer; + font-size: 20px; + @include transition(); + + &:hover { + color: green; + } + } + + [data-action="edit"] { + right: 0; + bottom: 0; + } +}