hippie-style/modules/card/_card_module.scss
Stephan Hagedorn cb93384315 removed sass placeholder
(i) change from parent project hippie
2020-05-08 19:55:55 +02:00

77 lines
1.1 KiB
SCSS

// 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;
}
}
}
}