You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
886 B
CSS

3 years ago
body {
font-size: 1.5rem;
margin: 0;
background: rgb(255, 244, 235);
}
.contents {
margin: 32px;
}
h1 {
color: #ecab72;
margin: 32px;
text-align: center;
}
3 years ago
/* FILTERS */
3 years ago
.tag {
background: none;
font-size: 20px;
display: inline-block;
border: 1px solid currentColor;
padding: 0 0.5em;
border-radius: 1em;
margin: 4px;
text-transform: capitalize;
user-select: none;
cursor: pointer;
transform: translateY(0);
transition: transform 0.4s ease-in;
3 years ago
}
3 years ago
.tag.active {
background-color: white;
}
3 years ago
.tag.active.all {
background: none;
}
.tag:focus {
transform: translateY(-4px);
transition: transform 0.2s ease-out;
}
3 years ago
ul {
padding: 0;
}
3 years ago
3 years ago
/* TABLE */
3 years ago
tr {
display: none;
}
tr.active {
display: table-row;
}
tr .tag {
cursor: default;
}
3 years ago
tr.header {
display: table-row;
text-align: left;
}