vasil360SUPPORT
- 29год.
- София
div.container {
background-color: #ffffff;
}
div.container p {
font-family: Cursive;
font-size: 14px;
font-style: normal;
font-weight: bold;
text-decoration: none;
text-transform: none;
color: #ffffff;
background-color: #ffffff;
}
Beginner
[うちはイタチ]
{
box-sizing: border-box;
}
/ Style the images inside the grid /
.column img {
opacity: 0.8;
cursor: pointer;
}
.column img:hover {
opacity: 1;
}
/ Add padding BETWEEN each column /
.row,
.row > .column {
padding: 8px;
}
/ Create three equal columns that floats next to each other /
.column {
float: left;
width: 33.33%;
display: none; / Hide all elements by default /
}
/ Clear floats after rows /
.row:after {
content: "";
display: table;
clear: both;
}
/ Content /
.content {
background-color: white;
padding: 10px;
}
/ The "show" class is added to the filtered elements /
.show {
display: block;
}
/ Style the buttons /
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: white;
cursor: pointer;
}
.btn:hover {
background-color: #e1fffd;
}
.btn.active {
background-color: #18b4b1;
color: white;
}