From 5e667371e6aafdfc8bbafb56d4891f9d1cb795d8 Mon Sep 17 00:00:00 2001 From: Stephan Hagedorn Date: Sun, 14 Mar 2021 21:44:05 +0100 Subject: [PATCH] Moved card module to hippie --- _hippie.scss | 1 - modules/card/_card_module.scss | 77 ---------------------------------- 2 files changed, 78 deletions(-) delete mode 100644 modules/card/_card_module.scss diff --git a/_hippie.scss b/_hippie.scss index ad96e38..6a63ce1 100644 --- a/_hippie.scss +++ b/_hippie.scss @@ -27,7 +27,6 @@ // in dependency to other basic styles // ----------------------------------------------------------------------------- @import "modules/navigation/nav_module"; -@import "modules/card/card_module"; @import "modules/editor/editor_module"; @import "modules/explanation/explanation_module"; @import "modules/print/print_module"; diff --git a/modules/card/_card_module.scss b/modules/card/_card_module.scss deleted file mode 100644 index 36b7424..0000000 --- a/modules/card/_card_module.scss +++ /dev/null @@ -1,77 +0,0 @@ -// Card module styles -// ------------------------------------------------------------------------------ - -.html_card { - height: 100%; - - body { - min-height: 100%; - - .card_bkg { - @extend %full_parent; - transition-duration: 800ms; - overflow: hidden; - vertical-align: top; - z-index: -1; - - & > svg { - position: relative; - } - } - - .card_box { - display: flex; - align-items: center; - justify-content: center; - height: 100vh; - - * { - font-family: $family_text_card; - // text-align: center; - } - - & > div { - position: relative; - padding: 64px 64px 24px 64px; - border: 1px solid #FFF; - background-color: #F5F5F5; - z-index: 40; - } - } - - h1 { - margin: 16px 0; - color: #1E1E1E; - font-size: 24px; - line-height: 1.4em; - font-weight: normal; - } - - p { - margin-top: 0; - margin-bottom: 16px; - font-size: 12px; - line-height: 1.4em; - } - - .marked { - // padding-left: 1em; - // text-indent: -1em; - - &::before { content: "*\0000a0" } - } - - .decent { color: #666 } - - a { - color: #000; - text-decoration: none; - - &:hover { - color: #F4F9FA; - background-color: #0C85FF; - text-decoration: none; - } - } - } -}