18 lines
279 B
CSS
18 lines
279 B
CSS
/* Prevent excess gaps underneath headers. Looks horrible! */
|
|
h1,h2,p,div {
|
|
margin-bottom: 16px;
|
|
margin-top: 8px;
|
|
}
|
|
h3,h4 {
|
|
margin-bottom: 12px;
|
|
margin-top: 6px;
|
|
}
|
|
h5,h6 {
|
|
margin-bottom: 8px;
|
|
margin-top: 4px;
|
|
}
|
|
pre,strong {
|
|
margin-bottom: 4px;
|
|
margin-top: 2px;
|
|
}
|