word-search-puzzle
Version:
word search puzzle component
50 lines (41 loc) • 893 B
CSS
.root {
display: flex;
justify-content: center;
margin-top: 5%;
}
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
/* p {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-o-user-select: text;
user-select: text;
} */
.letter-wrapper {
/* background: rgb(1, 146, 98); */
padding: 5px;
display: inline-block;
padding-top: 5px;
padding-left: 15px;
padding-right: 15px;
cursor: default;
}
.letter-wrapper:hover {
/* background: rgb(0, 218, 145) !important; */
padding-top: 5px;
padding-left: 15px;
padding-right: 15px;
cursor: pointer;
}
table,
tr,
td {
border: 1px inset rgb(255, 255, 255);
border-collapse: collapse;
}