policychanges/css/styles.css

175 lines
2.3 KiB
CSS
Raw Normal View History

2021-02-05 03:19:09 -06:00
html,body{
height:100%;
}
2021-02-25 17:05:22 -06:00
2021-02-05 03:19:09 -06:00
body{
2021-02-18 03:25:05 -06:00
background: #000000;
2021-02-05 03:19:09 -06:00
margin:0;
padding:0;
position: relative;
font-family: Arial, Helvetica, sans-serif;
2021-02-21 20:43:05 -06:00
overflow-x: hidden;
overflow-y: hidden;
2021-02-05 03:19:09 -06:00
}
#divbg {
pointer-events: none;
}
#bg {
pointer-events: none;
}
2021-02-05 03:19:09 -06:00
#tetris{
left:42%;
2021-02-05 03:19:09 -06:00
top:50%;
position: absolute;
background: #555;
background:rgba(1,1,1,.10);
2021-02-28 11:06:23 -06:00
width:560px;
2021-02-05 03:19:09 -06:00
}
#scene{
height:100%;
position: absolute;
background: #2f2f2f;
left:210px;
background:rgba(1,1,1,.10);
2021-02-09 21:19:20 -06:00
}
#leftSide {
2021-02-28 11:06:23 -06:00
top:10px;
2021-02-09 21:19:20 -06:00
height:100%;
position: absolute;
left:0px;
width:210px;
2021-02-28 01:57:23 -06:00
text-align: left;
background:rgba(1,1,1,.20);
2021-02-09 21:19:20 -06:00
}
#leftInfo{
overflow:hidden;
overflow-y:scroll;
height:200px;
width:200px;
2021-02-09 21:19:20 -06:00
margin:0 auto;
2021-02-28 11:06:23 -06:00
background: rgba(30,30,30,.70);
border: 1px solid black;
2021-02-09 21:19:20 -06:00
}
#leftInfo ul {padding:2%;}
2021-02-09 21:19:20 -06:00
#hold{
2021-02-28 11:06:23 -06:00
left:50px;
2021-02-28 01:57:23 -06:00
text-align:right;
2021-02-09 21:19:20 -06:00
position:relative;
width:80px;
height:435px;
2021-02-09 21:19:20 -06:00
background: #2f2f2f;
margin:10px auto;
2021-02-28 11:06:23 -06:00
background:rgba(0,0,0,.80);
2021-02-05 03:19:09 -06:00
}
#gameOver{
height:100%;
position: absolute;
2021-02-12 00:37:49 -06:00
right:120px;
left:210px;
2021-02-05 03:19:09 -06:00
background:rgba(0,0,0,.75);
z-index:999;
2021-02-28 01:57:23 -06:00
color:#2f2f2f;
2021-02-05 03:19:09 -06:00
text-align: center;
display: none;
}
#gameOver h1{
margin-top:50%;
}
#gameOver a,#gameOver a:visited{
2021-02-28 01:57:23 -06:00
color:dodgerblue;
2021-02-05 03:19:09 -06:00
text-decoration: none;
}
#gameOver h3{
2021-02-28 11:06:23 -06:00
color:DimGrey;
2021-02-05 03:19:09 -06:00
}
#side{
height:100%;
position: absolute;
2021-02-28 11:06:23 -06:00
top:-10px;
2021-02-05 03:19:09 -06:00
right:0;
left:560px;
2021-02-05 03:19:09 -06:00
text-align: center;
2021-02-28 11:06:23 -06:00
background:rgba(1,1,1,.30);
2021-02-05 03:19:09 -06:00
}
#info{
2021-02-28 11:06:23 -06:00
height:700px;
width:210px;
left:210px;
2021-02-05 03:19:09 -06:00
margin:0 auto;
2021-02-28 11:06:23 -06:00
background:rgba(1,1,1,.30);
2021-02-05 03:19:09 -06:00
}
#preview{
width:80px;
height:468px;
2021-02-09 21:19:20 -06:00
top:0px;
2021-02-12 22:44:49 -06:00
background: #ffffff;
2021-02-05 03:19:09 -06:00
margin:10px auto;
2021-02-28 11:06:23 -06:00
background:rgba(0,0,0,.80);
2021-02-05 03:19:09 -06:00
}
2021-02-09 21:19:20 -06:00
2021-02-05 03:19:09 -06:00
#levelInfo{
2021-02-28 11:06:23 -06:00
color:DimGrey;
2021-02-05 03:19:09 -06:00
font-size:18px;
margin:10px 0;
2021-02-28 11:06:23 -06:00
background:rgba(0,0,0,0);
2021-02-05 03:19:09 -06:00
}
#level{
2021-02-28 01:57:23 -06:00
color:dodgerblue;
2021-02-28 11:06:23 -06:00
font-size:18px;
background:rgba(0,0,0,0);
2021-02-05 03:19:09 -06:00
}
#scoreInfo{
2021-02-28 11:06:23 -06:00
color:DimGrey;
2021-02-05 03:19:09 -06:00
font-size: 18px;
margin-top:0;
2021-02-28 11:06:23 -06:00
background:rgba(0,0,0,0);
2021-02-05 03:19:09 -06:00
}
#score{
2021-02-28 01:57:23 -06:00
color:dodgerblue;
font-family: 'Arial';
2021-02-28 11:06:23 -06:00
background:rgba(0,0,0,0);
2021-02-09 21:19:20 -06:00
2021-02-28 11:06:23 -06:00
}
#linesInfo{
2021-02-09 21:19:20 -06:00
margin-top:0;
2021-02-28 11:06:23 -06:00
visibility: collapse;
2021-02-05 03:19:09 -06:00
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
-ms-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
2021-02-28 11:06:23 -06:00
}
#bg {
-webkit-filter: blur(3px);
filter: blur(3px);
2021-02-05 03:19:09 -06:00
}