1
2
3
4
5
6
7
8
9
10
11
12
|
/*
flexbox:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*/
/* reset */
* { margin: 0; padding: 0; }
img { border: none; }
|
>
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
flexbox:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*/
@font-face {
font-family: "Yanone Kaffeesatz";
font-weight: normal;
src: url(../fonts/YanoneKaffeesatz-Regular.otf) format("opentype");
}
@font-face {
font-family: "Yanone Kaffeesatz";
font-weight: bold;
src: url(../fonts/YanoneKaffeesatz-Bold.otf) format("opentype");
}
/* reset */
* { margin: 0; padding: 0; }
img { border: none; }
|