haldis/app/static/css/main.css

119 lines
2.1 KiB
CSS
Raw Normal View History

2015-03-31 18:15:22 +00:00
/* Custom CSS */
2019-10-24 11:50:51 +00:00
:root {
2019-10-28 15:09:21 +00:00
/*Darkmode colors*/
2019-11-16 13:54:45 +00:00
--dGray0:#D0D0D8;
2019-10-24 11:50:51 +00:00
--dGray1:#8E8E93;
--dGray2:#636366;
--dGray3:#48484A;
--dGray4:#3A3A3C;
--dGray5:#2C2C2E;
--dGray6:#1C1C1E;
--dBlue:#0A84FF;
}
2019-10-30 22:40:36 +00:00
html {
height: 100%;
}
2019-10-24 11:50:51 +00:00
2015-03-31 18:15:22 +00:00
body {
padding-top: 70px;
2019-11-16 13:54:45 +00:00
height: 100%;
}
.background{
position: absolute;
z-index: -1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
2019-10-30 22:40:36 +00:00
background-size: cover;
background-repeat: no-repeat;
background-position: center;
2019-11-16 13:54:45 +00:00
-webkit-filter: blur(2px) brightness(50%);
-moz-filter: blur(2px) brightness(50%);
-o-filter: blur(2px) brightness(50%);
-ms-filter: blur(2px) brightness(50%);
filter: blur(2px) brightness(50%);
2015-03-31 18:15:22 +00:00
}
.padding-top {
padding-top: 10px;
}
2015-03-31 18:15:22 +00:00
.darker {
background-color: #fafafa;
margin-top: 10px;
padding-bottom: 5px;
}
@media (min-width: 992px) {
.align-bottom {
margin-top: 2.5em;
}
}
.full-width {
width: 100%;
}
2015-06-24 20:10:26 +00:00
.product .extras {
padding-left: 20px;
}
2019-05-31 17:05:40 +00:00
@media(min-width: 768px) and (max-width: 991px){
/* Make sure the small map in the location page has the same with as the block above */
.sm-no-side-padding {
padding-left: 0px;
padding-right: 0px;
}
}
@media(min-width: 992px){
.md-no-right-padding {
padding-right: 0px;
}
}
.showcase .product {
font-size: 16px;
}
/* Add clickable box */
div.box:hover {
cursor: hand;
cursor: pointer;
opacity: .9;
box-shadow: 2px 4px 4px -1px #888888;
}
a.divLink {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-decoration: none;
/* Makes sure the link doesn't get underlined */
z-index: 10;
/* raises anchor tag above everything else in div */
background-color: white;
/*workaround to make clickable in IE */
opacity: 0;
/*workaround to make clickable in IE */
filter: alpha(opacity=0);
/*workaround to make clickable in IE */
2019-10-28 15:09:21 +00:00
}
.footerWrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 -1rem;
}
.footerWrapper>div{
margin: 0 1rem;
}
2019-10-30 22:40:36 +00:00
.hidden {
display: none;
2015-06-24 20:10:26 +00:00
}