first commit

This commit is contained in:
2025-09-16 01:40:08 +03:00
commit d9969e1394
252 changed files with 41184 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../reset.css" rel="stylesheet"/>
<link href="./style.css" rel="stylesheet"/>
<title>MixItUp Demo - Float-based Grid</title>
</head>
<body>
<div class="container">
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
<div class="mix"></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,73 @@
html,
body {
height: 100%;
background: #f2f2f2;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
/* Container
---------------------------------------------------------------------- */
.container {
padding: 1rem .5rem;
overflow: hidden;
}
/* Target Elements
---------------------------------------------------------------------- */
.mix {
float: left;
margin: 0 .5rem 1rem;
background: #fff;
border-radius: 2px;
position: relative;
}
.mix:before {
content: '';
display: inline-block;
padding-top: 56.25%;
}
/* Grid Breakpoints
---------------------------------------------------------------------- */
/* 2 Columns */
.mix {
width: calc(50% - 1rem);
}
/* 3 Columns */
@media screen and (min-width: 541px) {
.mix {
width: calc(100%/3 - 1rem);
}
}
/* 4 Columns */
@media screen and (min-width: 961px) {
.mix,
.gap {
width: calc(100%/4 - 1rem);
}
}
/* 5 Columns */
@media screen and (min-width: 1281px) {
.mix,
.gap {
width: calc(100%/5 - 1rem);
}
}