blob: 0d2fdf33f4c6232dfaf826a340540b919d85cb4b (
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
|
/* file : web.css
* copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
* license : MIT; see accompanying LICENSE file
*/
/* Bases:
*
* common.css
* pre-box.css
* code-box.css
*
*/
@media only screen and (max-width: 567px)
{
#header-menu-body
{
-webkit-flex-direction: column;
flex-direction: column;
}
}
h1
{
font-weight: normal;
font-size: 2em;
line-height: 1.4em;
margin: 1.6em 0 .6em 0;
}
|