diff options
author | Marius Peter <marius.peter@tutanota.com> | 2024-12-30 14:46:16 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2024-12-30 14:46:16 +0100 |
commit | d16832c6af4215bfa18c34ef8fa46b1e3ef55d82 (patch) | |
tree | cae6358508352e5431b72fcc317bab2c7b15fb95 /app/assets/stylesheets/components/tartiflette_container.css | |
parent | a9545c7fd324475710c2166514dcd4a62622f9e2 (diff) |
Changed tartiflette list to flexbox container.
Diffstat (limited to 'app/assets/stylesheets/components/tartiflette_container.css')
-rw-r--r-- | app/assets/stylesheets/components/tartiflette_container.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components/tartiflette_container.css b/app/assets/stylesheets/components/tartiflette_container.css new file mode 100644 index 0000000..64c4053 --- /dev/null +++ b/app/assets/stylesheets/components/tartiflette_container.css @@ -0,0 +1,39 @@ +.tartiflette-container { + display: flex; + flex-wrap: wrap; + gap: 1rem; + justify-content: center; + + .tartiflette-box { + border-radius: 1rem; + padding: 1rem; + width: 8rem; + text-align: center; + background-color: white; + } + + .tartiflette-box:hover { + background-color: whitesmoke; + } + + .tartiflette-link { + display: inline-block; + margin-top: 0.5rem; + padding: 0.5rem 1rem; + text-decoration: none; + color: white; + border-radius: 1rem; + } + + .scored { + background-color: forestgreen; + } + + .unscored { + background-color: firebrick; + } + + .tartiflette-link:hover { + background-color: #0056b3; /* Darker blue for hover effect */ + } +} |