72 lines
926 B
CSS
72 lines
926 B
CSS
|
#tebriks {
|
||
|
text-align: center;
|
||
|
font-size: larger;
|
||
|
font-weight: 800;
|
||
|
color: blue;
|
||
|
background-color: coral;
|
||
|
padding: 3px;
|
||
|
border: 1px solid white;
|
||
|
}
|
||
|
|
||
|
.innot {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.guess-table {
|
||
|
width: 100%;
|
||
|
display: table;
|
||
|
overflow-x: auto;
|
||
|
-ms-overflow-style: none;
|
||
|
scrollbar-width: none;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-device-width: 1000px) {
|
||
|
.guess-table {
|
||
|
display: block;
|
||
|
overflow-x: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.guess-tr {}
|
||
|
|
||
|
.guess-th {
|
||
|
border: aliceblue 3px solid;
|
||
|
}
|
||
|
|
||
|
.guess-td {
|
||
|
text-align: center;
|
||
|
border: aliceblue 1px solid;
|
||
|
}
|
||
|
|
||
|
.type0 {
|
||
|
background-color: red;
|
||
|
font-weight: 800;
|
||
|
}
|
||
|
|
||
|
.type1 {
|
||
|
background-color: orange;
|
||
|
color: darkblue;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
.type2 {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
.type10 {
|
||
|
background-color: red;
|
||
|
font-weight: 800;
|
||
|
}
|
||
|
|
||
|
.type10::after {
|
||
|
content: "👇"
|
||
|
}
|
||
|
|
||
|
.type12 {
|
||
|
background-color: red;
|
||
|
font-weight: 800;
|
||
|
}
|
||
|
|
||
|
.type12::after {
|
||
|
content: "👆"
|
||
|
}
|