-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
37 lines (27 loc) · 1.43 KB
/
style.css
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
30
31
32
33
34
35
36
37
/************************* DEBUG SETTINGS *************************/
/* Settings to help find errors in your css
uncomment temporarily to enable */
/* Add dotted line around all boxes.
This makes size of boxes visible.
Warning 1: this settings may change your layout.
Warning 2: keep the * as selector for all tags when uncommenting. */
/* * {border: 1px dotted black;} */
/* Add semi-transparant dark background to all boxes
The more boxes are on top of eachother the darker tghe background color
Warning: keep the * as selector for all tags when uncommenting. */
/* * {background-color: rgba(0,0,0,5%);} */
/************************* BASE SETTINGS *************************/
/* Settings to make it easier for you
uncomment permanently when you understand the meaning of them */
/* border is included in width en height of boxes */
/* * { box-sizing: border-box; } */
/* standard margin 0 pixels */
/* * { margin: 0px; } */
/* hide everything larger than the dimensions of the div-box
important side effect: browser usually doesn't take floats
into account when determining height of div, leading to
div with height zero. With this settings, height of div-boxes
willl be large enough to fit floats inside. */
/* div { overflow: hidden; }
/************************* YOUR SETTINGS *************************/
/* add your css here, feel free to use comments and order them logically for better readability */