CSS: Restyle borders

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-01 23:01:55 +02:00
parent e939fef0a8
commit 5113abfdb5
2 changed files with 10 additions and 2 deletions

View File

@ -39,12 +39,14 @@ body {
} }
h1 { h1 {
border-bottom: 1px solid @gray-lightest;
font-size: 18px; font-size: 18px;
font-weight: normal; font-weight: normal;
line-height: 22px; line-height: 22px;
} }
h2 { h2 {
border-bottom: 1px solid @gray-lightest;
font-size: 16px; font-size: 16px;
font-weight: normal; font-weight: normal;
line-height: 19px; line-height: 19px;

View File

@ -141,11 +141,17 @@ html {
background-color: white; background-color: white;
padding: 1em 1em 0; padding: 1em 1em 0;
z-index: 100; z-index: 100;
h1 {
margin: 0;
margin-top: @horizontal-padding;
}
} }
.container .controls.separated { .container .controls.separated {
box-shadow: 0 3px 4px -4px rgba(0, 0, 0, 0.2); box-shadow: 0 3px 4px -4px rgba(0, 0, 0, 0.2);
padding-bottom: 0.5em; // border-bottom: 1px solid @gray-lightest;
padding-bottom: @horizontal-padding / 2
} }
.container .fake-controls { .container .fake-controls {
@ -321,7 +327,7 @@ html {
} }
#layout.twocols #col2 { #layout.twocols #col2 {
border-left: 1px solid #d9d9d9; border-left: 1px solid @gray-light;
display: block; display: block;
} }