-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "falscher-hase", | ||
"css": [ | ||
"/style.css" | ||
], | ||
"editable_elements": [ | ||
{"tag": "p", "class": "subline", "default": "You are beautiful"}, | ||
{"tag": "h1", "class": "heading-extra", "default": "Let's change the world"}, | ||
{"tag": "h1", "class": "heading", "default": "🐰"}, | ||
{"tag": "p", "class": "heading", "default": "Follow the wrong rabbit."} | ||
], | ||
"styling_elements": [ | ||
{"tag": "img", "alt": "", "class": "absolute", "id": "logo", "src": "/falscher-hase-logo.webp"} | ||
] | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* sixtyfour-regular - latin */ | ||
@font-face { | ||
font-display: swap; | ||
/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ | ||
font-family: 'Sixtyfour'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('./fonts/sixtyfour-v1-latin-regular.woff2') format('woff2'); | ||
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ | ||
} | ||
|
||
/* nunito-sans-regular - latin */ | ||
@font-face { | ||
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ | ||
font-family: 'Nunito Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('./fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ | ||
} | ||
|
||
body{ | ||
font-family: 'Nunito Sans', arial; | ||
} | ||
.heading-extra{ | ||
font-family: 'Sixtyfour'; | ||
} | ||
p{ | ||
font-size: 55px; | ||
margin: 50px 0px; | ||
} | ||
|
||
#falscher-hase { | ||
width: 100vw; | ||
height: 100vh; | ||
margin: 0 !important; | ||
padding: 0 !important; | ||
} | ||
.absolute { | ||
position: absolute; | ||
height: 2.5cm; | ||
width: auto; | ||
} | ||
#logo { | ||
bottom: 0.0cm; | ||
left: 0.0cm; | ||
height: 35%; | ||
} |
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