Skip to content
Snippets Groups Projects
Commit e76e8e64 authored by M Miller's avatar M Miller
Browse files

add sass structure and files

parent d5d25cb2
Branches feature/composer-trouble
No related tags found
1 merge request!3Theme in progress.
// Used to store temporary styles.
// These styles should be ported back to it-osu-pl or worked into their own partials.
// These styles will load last.
\ No newline at end of file
button.media-library-item__edit {
border: 1px solid $gray-light;
background: lighten($gray-lightest, 3%);
padding: 5px 7px;
border-radius: 5px;
&:hover {
background: darken($gray-lightest, 3%);
}
}
\ No newline at end of file
/**
* @file
* Visual styles for fields.
*/
.field {
margin-bottom: 1.25em;
}
.field__label {
font-weight: bold;
}
.field--label-inline .field__label,
.field--label-inline .field__items {
float: left; /* LTR */
}
.field--label-inline .field__label,
.field--label-inline > .field__item,
.field--label-inline .field__items {
padding-right: 0.5em;
}
[dir='rtl'] .field--label-inline .field__label,
[dir='rtl'] .field--label-inline .field__items {
padding-right: 0;
padding-left: 0.5em;
}
.field--label-inline .field__label::after {
content: ':';
}
fieldset {
border: 1px solid $gray-lighter;
padding: rem-calc(15) rem-calc(20);
margin-top: rem-calc(10);
margin-bottom: rem-calc(20);
}
fieldset legend {
text-transform: uppercase;
color: $red;
font-weight: 700;
&:before,
&:after {
content: '|';
color: $clear;
}
}
html {
font-family: $proxima;
}
body {
margin: 0;
}
.inline-image {
img {
display: inline-block;
border: none;
max-height: 30px;
width: auto;
margin: 0 2px 2px;
}
}
ul.entity-moderation-form {
background: $near-white;
}
li.entity-moderation-form__item {
label {
font-weight: 700;
}
.form-submit {
margin-bottom: 32px !important;
}
}
\ No newline at end of file
.layout__wrapper--breadcrumb {
background: $white;
}
.region-sidebar {
@include breakpoint(medium) {
padding-left: 2em;
}
}
// Include Foundation
@import '../libraries/it-osu-pl-drupal/_settings.scss';
@import '../node_modules/foundation-sites/scss/foundation';
@import '../node_modules/foundation-sites/scss/util/color';
@import '../node_modules/foundation-sites/scss/util/util';
@include foundation-everything(true, true);
// Add partials from it-osu-pl patterns.
@import '../libraries/it-osu-pl-drupal/**/_*.scss';
// Add partials from this theme.
@import 'base/**/*.scss';
@import 'components/**/*.scss';
// Temporary fixes.
@import 'hacks';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment