This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Themes */ | |
/* define color palette */ | |
:root { | |
--White: hsl(0, 0%, 100%); | |
--VeryPaleBlue: hsl(225, 100%, 98%); | |
--LightGrayishBlue: hsl(227, 47%, 96%); | |
--DarkGrayishBlue: hsl(228, 12%, 44%); | |
--VeryDarkBlue: hsl(230, 17%, 14%); | |
--ALittleDarkBlue: hsl(232, 19%, 15%); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled, { createGlobalStyle } from "styled-components"; | |
type Props = { | |
color?: string; | |
bg?: string; | |
bdbox?: string; | |
gc?: string; | |
}; | |
type Theme = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<span> | |
</span> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="panel"> | |
<img src="https://assets.codepen.io/165585/avatar.png" class="avatar" /> | |
<h1>Erhalte dein Angebot per E-Mail</h1> | |
<form> | |
<div class="grid"> | |
<input type="text" class="firstname" placeholder="Vorname" /> | |
<input type="text" class="lastname" placeholder="Nachname" /> | |
<input type="text" class="phone" placeholder="Telefonnummer" /> | |
<input type="email" class="email" placeholder="E-Mail" /> | |
</div> |