Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here are some examples:

...

Code Block
languagecss
body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-image: url(https://images.unsplash.com/photo-1601649705707-13b54dc57b87?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1313&q=80);
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica;
    letter-spacing: 0.02em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

section.info {
    position: relative;
    background: inherit;
    border-radius: 2px;
    overflow: hidden;
}

section.info:after {
    content: '';
    width: 400px;
    height: 300px;
    background: inherit;
    position: absolute;
    left: -25px;
    right: 0;
    top: -25px;
    bottom: 0;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
    filter: blur(10px);
}

section.info main {
    position: relative;
    z-index: 1;
}

section.info main header {
    color: #fdfbfb;
}

.field-label {
    color: #fdfbfb;
}

.buttons input[type="submit"] {
    border: 2px solid white;
    background: none;
    color: black;
    cursor: pointer;
}

input:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

footer {
    background: #07358a;
    padding: 10px 120px;
}

...