Skip to content
Snippets Groups Projects
Select Git revision
  • 397ad9630da60425dd77b32a5fffc5150ba7836b
  • master default
  • v1.34.0
  • v1.33.0
  • v1.32.1
  • v1.32.0
  • v1.31.2
  • v1.31.1
  • v1.31.0
  • v1.30.0
  • v1.29.0
  • v1.28.0
  • v1.27.0
  • v1.26.0
  • v1.25.0
  • v1.24.0
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.20.0
  • v1.19.1
  • v1.19.0
22 results

main.css

Blame
  • main.css 1.21 KiB
    @font-face {
        font-family: 'Roboto';
        src: url('../fonts/Roboto-Regular-webfont.woff') format('woff');
        font-weight: normal;
    }
    
    @font-face {
        font-family: 'Roboto';
        src: url('../fonts/Roboto-Bold-webfont.woff') format('woff');
        font-weight: bold;
    }
    
    body {
        background-color: #212121;
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        color: white;
    }
    
    .grid-stack {
        width: 95%;
        margin: auto;
    }
    
    .grid-stack-item-content > .container {
        background-color: #616161;
        text-align: center;
        border-radius: 1vh;
    }
    
    .grid-stack-item .container {
        display: table;
        width: 100%;
        height: 100%;
    }
    
    .grid-stack-item-content .container > div {
        vertical-align: middle;
        display: table-cell;
        width: 100%;
        height: 100%;
    }
    
    .main {
        width: 100%;
        height: 100%;
    }
    
    .content {
        width: 40%;
        margin: auto;
        text-align: center;
    }
    
    .spacer {
        margin-bottom: 5vmin;
    }
    
    .page-item {
        display: block;
        background-color: #616161;
        text-align: center;
        border-radius: 1vh;
        margin: 2vmin;
        padding: 2vmin;
    
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
    }
    
    @media (max-width: 600px) {
        .content {
            width: 90%;
        }
    }