I am trying to show a table of contents on my website, I only want it to appear on Desktop and laptops, but not on tablets or mobile in either portrait or landscape. I know it's possible with media queries, but I can't figure them out.
Here's what I have so far:
@media only screen and (min-width: 64rem)
.toc-container {
display: none;
}
.toc-container {
display: -webkit-box;
display: flex;
-webkit-box-align: right;
align-items: left;
}
@media screen and (min-width: 768px)
.tiktoc {
display: none;
}
.tiktoc {
position: absolute;
top: 165px;
left: 1150px;
bottom: 0;
width: 350px;
margin-bottom: 0;
}