mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 04:21:36 +00:00
Improving spacing for tabs and forums
This commit is contained in:
parent
5ed4dd1891
commit
9d4f6268ec
5 changed files with 11 additions and 4 deletions
|
@ -298,6 +298,7 @@ form.square {
|
|||
}
|
||||
|
||||
form.search {
|
||||
margin-bottom: 10px;
|
||||
|
||||
.query {
|
||||
@include span-columns(7 of 9);
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
|
||||
.pagination {
|
||||
@include span-columns(12);
|
||||
margin: 20px 0;
|
||||
margin: 10px 0;
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
.tabbed {
|
||||
$tabs-border-width: 1px;
|
||||
$tabs-border-colour: lighten($light-blue, 40%);
|
||||
$tabs-border-colour: $light-blue;
|
||||
$tabs-padding-horizontal: 16px;
|
||||
$tabs-height: 35px;
|
||||
|
||||
|
@ -21,6 +21,8 @@
|
|||
display: block;
|
||||
|
||||
a {
|
||||
@include linear-gradient($blue, $dark-blue);
|
||||
background-color: $blue;
|
||||
border: $tabs-border-width solid $tabs-border-colour;
|
||||
border-right: 0;
|
||||
padding: 0 $tabs-padding-horizontal;
|
||||
|
@ -29,7 +31,6 @@
|
|||
color: white;
|
||||
font-weight: 400;
|
||||
line-height: $tabs-height;
|
||||
background-color: $blue;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
|
@ -49,6 +50,7 @@
|
|||
z-index: 100;
|
||||
|
||||
a {
|
||||
@include linear-gradient($light-blue, $blue);
|
||||
background-color: $light-blue;
|
||||
}
|
||||
}
|
||||
|
@ -59,6 +61,8 @@
|
|||
@include span-columns(12);
|
||||
border: $tabs-border-width solid $tabs-border-colour;
|
||||
border-radius: 0 $base-border-radius $base-border-radius $base-border-radius;
|
||||
background: lighten($light-gray, 10%);
|
||||
box-shadow: $light-shadow;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,8 @@
|
|||
|
||||
.calendar {
|
||||
max-height: 400px;
|
||||
overflow-x: scroll;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.shoutbox {
|
||||
|
|
|
@ -24,6 +24,7 @@ div#categories {
|
|||
|
||||
table.category {
|
||||
table-layout: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.bullet {
|
||||
|
|
Loading…
Reference in a new issue