2014-05-04 15:48:00 +02:00
|
|
|
/* ----------------------------- */
|
2015-03-04 15:37:11 +01:00
|
|
|
/* ==misc rules */
|
2014-05-04 15:48:00 +02:00
|
|
|
/* ----------------------------- */
|
2015-03-04 15:37:11 +01:00
|
|
|
|
2014-10-20 17:42:52 +02:00
|
|
|
/* styling skip links */
|
|
|
|
.skip-links {
|
|
|
|
position: absolute;
|
2014-10-20 17:59:59 +02:00
|
|
|
|
|
|
|
& a {
|
2014-05-04 15:48:00 +02:00
|
|
|
position: absolute;
|
2014-10-20 17:42:52 +02:00
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
padding: 0.5em;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
2014-05-04 15:48:00 +02:00
|
|
|
|
2014-10-20 17:42:52 +02:00
|
|
|
&:focus {
|
|
|
|
position: static;
|
|
|
|
overflow: visible;
|
|
|
|
clip: auto;
|
2014-05-04 15:48:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 15:37:11 +01:00
|
|
|
// hyphens on small screens
|
2014-10-20 17:42:52 +02:00
|
|
|
@media (max-width: $small-screen) {
|
|
|
|
/* you shall not pass */
|
|
|
|
div,
|
|
|
|
textarea,
|
|
|
|
table,
|
|
|
|
td,
|
|
|
|
th,
|
|
|
|
code,
|
|
|
|
pre,
|
|
|
|
samp {
|
|
|
|
word-wrap: break-word;
|
|
|
|
hyphens: auto;
|
2014-05-04 15:48:00 +02:00
|
|
|
}
|
2014-05-07 11:12:14 +02:00
|
|
|
}
|
2014-10-20 17:42:52 +02:00
|
|
|
|
2015-03-04 15:37:11 +01:00
|
|
|
/* Google Gmap3 bug fix on images */
|
|
|
|
.gm-style img {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
:not(.gm-style) img {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gm-style img,
|
|
|
|
.gmnoscreen img,
|
|
|
|
.gmnoprint img {
|
|
|
|
max-width: none !important;
|
|
|
|
}
|