43 lines
793 B
CSS
43 lines
793 B
CSS
|
#tetris {
|
||
|
padding: 2px;
|
||
|
background-color: white;
|
||
|
display: block;
|
||
|
margin: 0 auto;
|
||
|
margin-top: 5%;
|
||
|
margin-bottom: 5%;
|
||
|
width: 300px;
|
||
|
height: 600px;
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
border-left: 5px solid #004e92;
|
||
|
}
|
||
|
|
||
|
.monModal {
|
||
|
display: none; /* Hidden by default */
|
||
|
position: fixed; /* Stay in place */
|
||
|
z-index: 999; /* Sit on top */
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%; /* Full width */
|
||
|
height: 100%; /* Full height */
|
||
|
overflow: auto; /* Enable scroll if needed */
|
||
|
background-color: rgb(0,0,0); /* Fallback color */
|
||
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
||
|
}
|
||
|
|
||
|
.monModal-content {
|
||
|
margin: 20%;
|
||
|
}
|
||
|
|
||
|
#n1 {
|
||
|
color: gold;
|
||
|
}
|
||
|
|
||
|
#n2 {
|
||
|
color: grey;
|
||
|
}
|
||
|
|
||
|
#n3 {
|
||
|
color: saddlebrown;
|
||
|
}
|