107 lines
2.3 KiB
CSS
107 lines
2.3 KiB
CSS
/*@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: 0.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: 0.5;
|
|
-moz-opacity: 0.5;
|
|
-ms-filter: "alpha(opacity=50)";
|
|
filter: alpha(opacity=50);
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
|
|
opacity: 0.5;
|
|
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;
|
|
-moz-opacity: 1;
|
|
-ms-filter: "alpha(opacity=100)";
|
|
filter: alpha(opacity=100);
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1);
|
|
opacity: 1;
|
|
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;
|
|
} |