Files
bs_bingo/css/style.css
2021-05-22 01:41:52 +02:00

140 lines
2.3 KiB
CSS

* {
margin: 0px;
padding: 0px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body {
background-color: #000000;
background-image: url('../img/police.background.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: "BodoniSvtyTwoOSITCTT-Bold", "Georgia", serif;
text-rendering: optimizeLegibility;
}
#container {
width: 640px;
display: block;
margin-left: auto;
margin-right: auto;
background-color: none;
}
#header, #footer {
text-align: center;
display: block;
float: left;
width: 600px;
color: #FFFFFF;
opacity: 1;
background-color: none;
font-size: 2.0em;
font-weight: bold;
padding: 8px 20px 8px 20px;
text-shadow: 0px 2px 0px #000000;
transition-property: background-color;
}
#footer {
font-size: 1em;
padding: 3px 20px;
margin-bottom: 80px;
}
#footer a {
text-decoration: none;
color: #FFFFFF;
}
#board {
display: block;
float: left;
width: 640px;
background-color: #fff;
margin-bottom: 10px;
box-shadow: 0px 3px #919191;
}
.square, .freesquare {
display: block;
float: left;
overflow: hidden;
background-color: #fff;
color: #313131;
text-align: center;
width: 120px;
height: 120px;
padding: 3px;
border: 1px solid #d1d1d1;
transition-property: background-color;
transition-duration: 1s;
-moz-transition-property: background-color;
-moz-transition-duration: 1s;
-webkit-transition-property: background-color;
-webkit-transition-duration: 1s;
}
.selected {
color: #f1f1f1;
background-color: #313131;
}
.text {
font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, sans-serif;
vertical-align: middle;
font-size: 0.8em;
line-height: 1.2em;
}
.small {
font-size: 0.8em;
}
.medium {
font-size: 1.0em;
}
.large {
font-size: 1.2em;
}
.win {
color: #ffffff !important;
background-color: red;
}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
#container {
width: 640;
margin: -7px 0px 0px -7px;
}
#header {
font-size: 3.6em;
text-align: center;
padding: 20px 20px 12px 20px;
}
#footer {
padding: 16px 20px 8px 20px;
font-size: 2.0em;
}
.text {
font-size: 1.2em;
line-height: 1.2em;
}
}