This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/2017/web/themes/dcb2017/sass/base/_mixins.scss

37 lines
606 B
SCSS
Raw Normal View History

2017-03-31 15:21:45 +01:00
// Tablet size breakpoint 600px.
@mixin media-tablet {
@media screen and (min-width: 37.5rem) {
@content;
}
}
2017-04-18 11:42:47 +01:00
// Desktop size breakpoint 900px.
@mixin media-large {
@media screen and (min-width: 56.25rem) {
@content;
}
}
// Wide Desktop size breakpoint 1200px.
@mixin media-wide {
@media screen and (min-width: 75rem) {
@content;
}
}
2017-03-31 12:22:46 +01:00
@mixin button {
background: $dcb-blue;
border: 0;
color: white;
2017-04-24 11:31:29 +01:00
font-size: 1rem;
font-weight: 600;
2017-03-31 12:22:46 +01:00
padding: 0.5rem 1rem;
2017-04-24 11:31:29 +01:00
text-decoration: none;
2017-03-31 12:22:46 +01:00
text-transform: uppercase;
&:hover,
&:focus {
background: $dcb-green;
}
}