Files
notifications-admin/app/assets/stylesheets/_grids.scss
T

91 lines
1.3 KiB
SCSS
Raw Normal View History

.column-whole {
@include grid-column(1/1);
}
2015-12-17 10:18:31 +00:00
.column-three-quarters {
@include grid-column(3/4);
}
2016-01-18 10:47:53 +00:00
2016-03-17 11:45:48 +00:00
.column-one-sixth {
@include grid-column(1/6);
}
2016-05-20 12:05:05 +01:00
.column-five-sixths {
@include grid-column(5/6);
}
.column-one-eighth {
@include grid-column(1/8);
}
.column-seven-eighths {
@include grid-column(7/8);
}
%bottom-gutter,
2016-01-18 10:47:53 +00:00
.bottom-gutter {
@extend %contain-floats;
2016-01-18 10:47:53 +00:00
margin-bottom: $gutter;
clear: both;
2016-01-18 10:47:53 +00:00
}
2016-02-26 16:22:07 +00:00
.bottom-gutter-2-3 {
@extend %bottom-gutter;
2016-03-17 11:45:48 +00:00
margin-bottom: $gutter-two-thirds;
2016-02-26 16:22:07 +00:00
}
2016-08-02 16:43:47 +01:00
.bottom-gutter-1-2 {
@extend %bottom-gutter;
2016-08-02 16:43:47 +01:00
margin-bottom: $gutter-half;
}
.bottom-gutter-1-3 {
@extend %bottom-gutter;
margin-bottom: $gutter/3;
}
2016-11-04 09:50:11 +00:00
.bottom-gutter-3-2 {
@extend %bottom-gutter;
2016-11-04 09:50:11 +00:00
margin-bottom: $gutter * 3/2;
}
2016-08-22 15:39:50 +01:00
.bottom-gutter-2 {
@extend %bottom-gutter;
2016-08-22 15:39:50 +01:00
margin-bottom: $gutter * 2;
}
.align-with-heading {
display: block;
text-align: center;
2016-11-18 11:18:29 +00:00
margin-top: 13px;
padding-left: 2px;
padding-right: 2px;
}
2016-04-20 15:37:17 +01:00
.align-with-heading-copy {
display: block;
2016-12-05 13:02:19 +00:00
margin-top: 25px;
2016-04-20 15:37:17 +01:00
}
.align-with-heading-copy-right {
display: block;
margin-top: 35px;
text-align: right;
}
.global-cookie-message {
p {
@extend %site-width-container;
}
}
.footer-nav {
@include copy-16;
margin-bottom: $gutter-two-thirds;
a {
display: inline-block;
margin-right: $gutter-half;
}
}