a::documents MORE
CLOSE

Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. (Source: wikipedia)


MORE INFORMATION

HOW TO OPEN THIS FILE?

.css

h1 {
    font-family: 'Space Grotesk', sans-serif !important;
}
.button {
    transition: 0.7s;
}
.button:hover {
    background-color: black;
}
input[type=text] {
    padding: 12px 20px;
    border: 1px solid #DCDCDC;
}
@media only screen and (max-width: 600px) {
    span a {
        width: 80vw;
    }
}       

/* This is
a comment */
        
            

CLICK TO COPY TO CLICKBOARD