diff options
author | Joris | 2019-05-04 19:21:29 +0200 |
---|---|---|
committer | Joris | 2019-05-04 19:21:32 +0200 |
commit | a7c001d33e09211a95b0f29caffe2d5780ccf0e0 (patch) | |
tree | b953c892497185cbc7ebc2fbbadab89991ddbc5e /fr/README.md | |
parent | 23f04635cc26e1b0553088f28553f518488a9fc8 (diff) |
Translate to english
Put aside french translation, it will be considered afterward to show a
french version along the english version. For now, the page will be
english only.
Diffstat (limited to 'fr/README.md')
-rw-r--r-- | fr/README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fr/README.md b/fr/README.md new file mode 100644 index 0000000..ebb5f0e --- /dev/null +++ b/fr/README.md @@ -0,0 +1,29 @@ +# Currently not translated in french + +## Language bar + +```haskell +darkRed :: C.Color +darkRed = C.rgb 119 21 21 +``` + +```html +<div class="Language__Container"> + <a class="Language__Link" href="">FR</a> + <a class="Language__Link" href="">EN</a> +</div> +``` + +```haskell +".Language__Container" ? do + display flex + flexDirection rowReverse + backgroundColor Color.darkRed + paddingRight (px 5) + +".Language__Link" ? do + color Color.white + sym2 margin (px 5) (px 5) + fontSize (px 12) + textDecoration none +``` |