2017-03-25 08:52:56 +01:00
|
|
|
html {
|
|
|
|
background-color: #7986cb;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
background-color: #3f51b5;
|
2017-11-07 08:02:19 +01:00
|
|
|
background: linear-gradient(rgba(63, 81, 181, 1), rgba(63, 81, 181, 0));
|
2017-03-25 08:52:56 +01:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
nav .brand-logo {
|
2017-05-11 01:43:13 +02:00
|
|
|
left: 5%;
|
2017-03-25 08:52:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-10 21:18:07 +02:00
|
|
|
.align-top {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.brand-logo img {
|
|
|
|
width: 30px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 4px;
|
|
|
|
-webkit-filter: brightness(0) invert(1);
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
}
|
|
|
|
|
2017-03-25 08:52:56 +01:00
|
|
|
.btn {
|
|
|
|
background-color: #303f9f;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn:hover {
|
|
|
|
background-color: #3f51b5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn:focus {
|
|
|
|
background-color: #536dfe;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar_menu {
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center_content {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2017-04-05 09:14:29 +02:00
|
|
|
|
|
|
|
.betatag {
|
|
|
|
font-variant: small-caps;
|
2017-05-11 01:43:13 +02:00
|
|
|
font-size: 20px;
|
2017-04-05 09:14:29 +02:00
|
|
|
border-radius: 50px;
|
|
|
|
color: #eceff1;
|
2017-04-23 08:55:03 +02:00
|
|
|
}
|
2017-05-11 04:12:26 +02:00
|
|
|
|
|
|
|
img.center-align {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-panel.no-height-padding {
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 0px;
|
2018-02-23 04:30:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#dblbanner {
|
|
|
|
background-color: darkblue;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12pt;
|
|
|
|
padding-top: 9px;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dblbanner a {
|
|
|
|
transition: font-size 0.5s;
|
|
|
|
color: lightskyblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dblbanner a:hover {
|
|
|
|
font-size: 14pt;
|
2017-05-11 04:12:26 +02:00
|
|
|
}
|