2014-12-19 10:29:56 +00:00
|
|
|
// Some basic padding for all wrappers
|
2017-01-06 08:08:34 +00:00
|
|
|
.wrapper {
|
|
|
|
padding: $grid-gutter-width-base 0; }
|
2015-03-23 12:48:34 +00:00
|
|
|
|
|
|
|
// Reset hero wrapper padding to 0
|
2016-11-01 18:33:13 +00:00
|
|
|
#wrapper-hero { padding: 0px !important; }
|
2014-12-19 10:29:56 +00:00
|
|
|
|
2014-12-10 18:29:31 +00:00
|
|
|
// Adding basic Wordpress classes to pass the Wordpress.org tests
|
2016-11-01 18:33:13 +00:00
|
|
|
.sticky,
|
|
|
|
.gallery-caption,
|
2017-01-06 08:08:34 +00:00
|
|
|
.bypostauthor {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2014-12-22 08:26:47 +00:00
|
|
|
|
2015-03-23 12:48:34 +00:00
|
|
|
// Separate sticky wrapper from main content
|
2016-11-01 18:33:13 +00:00
|
|
|
.wrapper#wrapper-sticky { border-bottom: 1px solid $gray-light; }
|
2015-09-01 19:11:05 +00:00
|
|
|
|
2016-03-09 08:43:16 +00:00
|
|
|
// Adding some contrast background color to footer full widget
|
2016-11-01 18:33:13 +00:00
|
|
|
#wrapper-footer-full,
|
|
|
|
#wrapper-static-hero { background-color: $gray-lighter; }
|
2016-03-09 08:43:16 +00:00
|
|
|
|
2015-09-01 19:11:05 +00:00
|
|
|
// Necessary WP classes
|
2016-11-01 18:33:13 +00:00
|
|
|
.wp-caption { font-size: inherit; }
|
2016-02-15 12:30:16 +00:00
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
.wp-caption-text { font-size: inherit; }
|
2016-02-15 12:30:16 +00:00
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
.screen-reader-text { font-size: inherit; }
|
2016-02-15 12:30:16 +00:00
|
|
|
|
|
|
|
.alignleft {
|
2017-05-18 14:14:10 +00:00
|
|
|
display: inline;
|
2016-11-01 18:33:13 +00:00
|
|
|
float: left;
|
2017-05-18 14:14:10 +00:00
|
|
|
margin-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alignright {
|
|
|
|
display: inline;
|
|
|
|
float: right;
|
|
|
|
margin-left: 1.5em;
|
2016-07-07 18:12:43 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
.aligncenter { margin: 0px auto; }
|
2015-10-14 10:47:02 +00:00
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
// Post design
|
|
|
|
.entry-footer span { padding-right: 10px; }
|
2016-01-08 07:55:56 +00:00
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
// Limit featured image size to 100%
|
|
|
|
img.wp-post-image,
|
|
|
|
article img,
|
|
|
|
figure,
|
|
|
|
img,
|
|
|
|
#secondary img {
|
|
|
|
max-width: 100%;
|
2016-05-19 13:37:29 +00:00
|
|
|
height: auto;
|
2016-01-08 07:55:56 +00:00
|
|
|
}
|
2016-01-08 08:22:31 +00:00
|
|
|
|
|
|
|
// Skip to content link
|
2016-11-01 18:33:13 +00:00
|
|
|
a.skip-link {
|
|
|
|
position: fixed;
|
2016-11-01 18:54:30 +00:00
|
|
|
z-index: 1000;
|
2016-11-01 18:33:13 +00:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
2016-01-08 08:22:31 +00:00
|
|
|
}
|
2016-03-09 09:16:22 +00:00
|
|
|
|
|
|
|
// Reset Jumbotron default margin
|
2016-11-01 18:33:13 +00:00
|
|
|
.jumbotron { margin-bottom: 0px; }
|
2016-04-26 12:05:02 +00:00
|
|
|
|
2016-11-01 18:33:13 +00:00
|
|
|
// Bootstrap3 to Bootstrap4 "translation"
|
|
|
|
.menu-item {
|
|
|
|
float: left;
|
|
|
|
display: inline;
|
2016-11-01 18:54:30 +00:00
|
|
|
width: auto;
|
2016-11-01 18:33:13 +00:00
|
|
|
}
|
2016-04-26 12:05:02 +00:00
|
|
|
|
2017-01-06 19:41:04 +00:00
|
|
|
.bg-primary .dropdown-menu {
|
|
|
|
background-color:$brand-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-success .dropdown-menu {
|
|
|
|
background-color:$brand-success;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-inverse .dropdown-menu {
|
|
|
|
background-color:$brand-inverse;
|
|
|
|
}
|
|
|
|
|
2017-01-06 19:45:53 +00:00
|
|
|
// Fixing BS dropdown in a dropdown
|
2017-01-06 19:51:59 +00:00
|
|
|
.navbar-toggleable-md .navbar-nav .dropdown-menu {
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
2017-01-06 19:45:53 +00:00
|
|
|
.dropdown-menu .dropdown-menu {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
margin-left: 10px;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
li {
|
|
|
|
padding-left: 0px;
|
|
|
|
list-style: square;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu .menu-item {
|
|
|
|
width: 100%;
|
|
|
|
a.nav-link{
|
|
|
|
margin:0px;
|
|
|
|
padding:$nav-link-padding;
|
|
|
|
|
|
|
|
}
|
|
|
|
a.nav-link:hover {
|
|
|
|
background-color: $brand-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 03:39:51 +00:00
|
|
|
button,
|
|
|
|
[type="button"],
|
|
|
|
[type="reset"],
|
|
|
|
[type="submit"] {
|
2016-11-04 01:27:07 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-12-07 08:14:35 +00:00
|
|
|
|
|
|
|
// Clearing after gallery
|
|
|
|
.gallery:after {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
clear: both;
|
|
|
|
}
|
2016-12-22 08:12:18 +00:00
|
|
|
|
|
|
|
// Clearing after widget
|
2017-01-24 18:06:45 +00:00
|
|
|
aside.widget{clear:both;}
|
|
|
|
|
2017-01-25 09:24:08 +00:00
|
|
|
// Makes widgets in hero slider 100% width
|
2017-01-24 18:06:45 +00:00
|
|
|
#wrapper-hero .carousel-inner .textwidget {
|
|
|
|
width:100%;
|
2017-02-04 10:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adjusting brand link if h1 is used
|
2017-02-04 10:17:24 +00:00
|
|
|
h1.navbar-brand {
|
|
|
|
a {
|
2017-02-04 10:15:22 +00:00
|
|
|
color:inherit;
|
2017-02-04 10:17:24 +00:00
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
2017-01-24 18:06:45 +00:00
|
|
|
}
|