Files
2021-01-11 17:43:12 +01:00

124 lines
2.5 KiB
Plaintext

/*@import url('MasterPage.css');
@import url('BuildBlocks.css');
@import url('ExtraComp.css');
@import url('BtnReport.css');
@import url('JQClock.css');
@import url('font.css');*/
/* Move down content because we have a fixed navbar that is 50px tall */
body {
/*font-family: 'Open Sans Condensed', sans-serif;*/
font-family: 'Roboto', sans-serif;
/*font-family: 'Roboto Condensed', sans-serif;*/
}
/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
max-width: 280px;
}
.textCondens {
font-family: 'Roboto Condensed', sans-serif;
/*font-family: 'Open Sans Condensed', sans-serif;*/
}
.textNormal {
font-family: 'Roboto', sans-serif;
/*font-family: 'Open Sans', sans-serif;*/
}
.textBig {
font-size: 1.5em;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
.jumbotron {
margin-top: 20px;
}
.body-content {
padding: 0;
}
/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
max-width: 100%;
}
}
.elTimbSmart {
padding: 0.2em;
font-size: 1.1em;
line-height: 1.3em;
}
.ui-input-btn input {
opacity: .5;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.logo {
background-image: url(../images/logo_sw.png);
-khtml-opacity: .50;
-moz-opacity: .50;
-ms-filter: "alpha(opacity=50)";
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
opacity: .50;
width: 800px;
height: 300px;
margin: 50px auto 50px auto;
vertical-align: middle;
background-repeat: no-repeat;
}
.logo:hover {
background-image: url(../images/logo_sw.png);
-khtml-opacity: 1.0;
-moz-opacity: 1.0;
-ms-filter: "alpha(opacity=100)";
filter: alpha(opacity=100);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1.0);
opacity: 1.0;
width: 800px;
height: 300px;
margin: 50px auto 50px auto;
vertical-align: middle;
background-repeat: no-repeat;
}
.bodyCenter {
vertical-align: middle;
text-align: center;
height: 100%;
width: 100%;
}
.centerMenu {
background-color: White;
text-align: center;
border-width: thin;
border-style: groove;
border-color: Blue;
}
A:hover {
color: red;
}