-
Notifications
You must be signed in to change notification settings - Fork 0
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
12 changed files
with
282 additions
and
32 deletions.
There are no files selected for viewing
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,42 @@ | ||
# Schoggi Muffins | ||
|
||
|
||
:::cards --class=recipe | ||
![](images/muffins.jpg) | ||
|
||
:::flex --class=step --align-items=center | ||
200 g | ||
: schwarze Schoggi | ||
150 g | ||
: Butter | ||
*** | ||
Schmelzen | ||
::: | ||
:::flex --class=step --align-items=center | ||
4 | ||
: Eigelb | ||
200 g | ||
: Zucker | ||
*** | ||
schaumig rühren | ||
::: | ||
|
||
|
||
:::flex --class=step --align-items=center | ||
100 g | ||
: Mehl | ||
*** | ||
beigeben + geschmolzene Masse auch | ||
::: | ||
|
||
|
||
:::flex --class=step --align-items=center | ||
4 | ||
: Eiweiss | ||
*** | ||
steif schlagen + zum Rest | ||
::: | ||
|
||
|
||
Papierförmli bis zur Hälfte füllen (ca. 24 Stück) im vorgeheizten Ofen bei 220°C **8-9 min.** backen. | ||
::: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 @@ | ||
# Rezepte | ||
|
||
![](images/rezepte.jpg) |
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,31 @@ | ||
/** | ||
* Creating a sidebar enables you to: | ||
- create an ordered group of docs | ||
- render a sidebar for each doc of that group | ||
- provide next/previous navigation | ||
The sidebars can be generated from the filesystem, or explicitly defined here. | ||
Create as many sidebars as you want. | ||
*/ | ||
|
||
// @ts-check | ||
|
||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ | ||
const sidebars = { | ||
// By default, Docusaurus generates a sidebar from the docs folder structure | ||
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}], | ||
|
||
// But you can create a sidebar manually | ||
/* | ||
tutorialSidebar: [ | ||
{ | ||
type: 'category', | ||
label: 'Tutorial', | ||
items: ['hello'], | ||
}, | ||
], | ||
*/ | ||
}; | ||
|
||
module.exports = sidebars; |
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,16 @@ | ||
import React from 'react'; | ||
import clsx from 'clsx'; | ||
import styles from './styles.module.scss'; | ||
|
||
|
||
interface Props { | ||
children?: React.ReactNode; | ||
} | ||
|
||
export default function DefinitionList(props: Props): JSX.Element { | ||
return ( | ||
<dl className={clsx(styles.dl, 'dl')}> | ||
{props.children} | ||
</dl> | ||
); | ||
} |
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,48 @@ | ||
|
||
// Horizontal Definition Lists | ||
.dl { | ||
display: flex; | ||
flex-wrap: wrap; | ||
width:100%; | ||
> * { | ||
padding: 1px; | ||
padding-top: 0.5em; | ||
} | ||
dt { | ||
width:30%; | ||
font-weight: bold; | ||
text-align:right; | ||
min-height: 1px; | ||
overflow-x: auto; | ||
overflow-y: hidden; | ||
&:last-of-type { | ||
padding-bottom: 0.2em; | ||
} | ||
} | ||
dd { | ||
overflow-x: auto; | ||
width:60%; | ||
padding-left:1em; | ||
margin-left: 0px; | ||
overflow-y: hidden; | ||
&:last-of-type { | ||
padding-bottom: 0.2em; | ||
} | ||
} | ||
dd + dd { | ||
width: 100%; | ||
padding-left: calc(30% + 1em); | ||
padding-top:4px; | ||
} | ||
dt + dt { | ||
padding-right: 60%; | ||
} | ||
dt + dt + dd { | ||
margin-top: -1.625em; /* own height including padding */ | ||
padding-left: calc(30% + 1em); | ||
} | ||
|
||
dd p, dd ul, dd ol { | ||
line-height: inherit; | ||
} | ||
} |
Oops, something went wrong.