Skip to content
Snippets Groups Projects
Select Git revision
  • 835ca668a0ddca527cffc19989579d0df4c55795
  • master default protected
  • 0.1
3 results

main.rs

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;
    }