Skip to content
Snippets Groups Projects
Select Git revision
  • a9c97b44735aaba33d7a7d3bbdac7a90777b4fd7
  • main default protected
2 results

form.css

Blame
  • form.css 400 B
    html{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
    
    body{
        color: white;
        background-color: #232323;
    }
    
    body{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90vh;
    }
    
    .form{
        text-align: center;
    }
    
    form{
        display: flex;
        flex-direction: column;
    }
    
    form>button{
        margin-top: 10px;
    }