CSS - saguoran/snipets GitHub Wiki

Background Image

body {
    margin: 0;
    font-family: system-ui;
}

.hero{
    background-color: #b3d9dd
    background-image: url("../image/xxx.png")
    background-repeat: repeat;
    background-size: cover;
    background-blend-mode: multiply;
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}

.container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}