UNPKG
hut-base
Version:
latest (0.2.0)
true (0.0.1)
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
Base styles for HTML UI Toolkit
github.com/conradz/hut-base
conradz/hut-base
hut-base
/
styles
/
layout.css
23 lines
(18 loc)
•
293 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Basic layout styles */
*, *
:before
, *
:after
{ -webkit-
box-sizing
: border-box; -moz-
box-sizing
: border-box;
box-sizing
: border-box; }
html
,
body
{
margin
:
0
;
padding
:
0
; }
html
{
width
:
100%
;
height
:
100%
;
overflow
: auto; }
body
{
overflow
: hidden; }