nigger css
Data utworzenia: 2025-02-11 07:24:38
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
text-align: center;
}
.container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 20px;
max-width: 1000px;
margin: auto;
}
.box {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
img {
width: 200px;
height: 120px;
object-fit: cover;
}
.blend {
mix-blend-mode: normal;
}
.multiply {
mix-blend-mode: multiply;
}
.screen {
mix-blend-mode: screen;
}
.overlay {
mix-blend-mode: overlay;
}
.darken {
mix-blend-mode: darken;
}
.lighten {
mix-blend-mode: lighten;
}
.color-dodge {
mix-blend-mode: color-dodge;
}
.color-burn {
mix-blend-mode: color-burn;
}
p {
margin-top: 5px;
font-size: 14px;
}
Powrót