aboutsummaryrefslogtreecommitdiff
path: root/fr/README.md
blob: ebb5f0e3f649bd98ea746b7b4bdf4b0ca9090bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
```