Skip to content
Snippets Groups Projects
Select Git revision
  • 2267735eed9209a89692cbf790cf97e4157ff01b
  • master default
2 results

alloc.h

Blame
  • Forked from HyukSang Kwon / 1801_OS_assignment4
    Source project has a limited visibility.
    LoginPage.module.css 736 B
    .container {
        width: 100vw;
        max-width: 768px;
        height: 100vh;
        margin-top: calc(-1*var(--header-height));
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .container input {
        border: 1px solid var(--gray-1);
        width: 80%;
        height: 36px;
        padding: 4px;
        padding-left: 8px;
    }
    
    .btn-area {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 16px;
    }
    
    .btn-area button {
        width: calc(40% - 8px);
        height: 36px;
        border-radius: 8px;
    }
    
    .signup-btn {
        border: 1px solid var(--gray-1);
        background-color: white;
    }
    
    .login-btn {
        border: none;
        background-color: var(--brand-color);
        color: white;
    }