Skip to content
Snippets Groups Projects
bootloader.css 682 B
Newer Older
  • Learn to ignore specific revisions
  • html {
        background-color: white;
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #loadingAngularContent {
        width: 100%;
        color: #666;
        height: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .loaderAngularContent {
        opacity: 0.5;
        display: flex;
        justify-content: center;
        padding: 5px;
        height: 20px;
        margin: 10px;
        line-height: 20px;
        font-weight: bold;
        font-size: 2em;
        text-align: center;
    }
    
    .loaderAngularContentText {
        font-family: Roboto, "Helvetica Neue", sans-serif;
    }