github.com/kubri/kubri@v0.5.1-0.20240317001612-bda2aaef967e/website/src/pages/index.module.scss (about)

     1  .heroBanner {
     2    padding: 6rem 0;
     3  
     4    @media screen and (max-width: 996px) {
     5      padding: 2rem;
     6    }
     7  }
     8  
     9  .section {
    10    background-image: conic-gradient(
    11      from 90deg at -10% 100%,
    12      #bcc1cd 0deg,
    13      #bcc1cd 90deg,
    14      #fff 1turn
    15    );
    16    border-top-color: rgba(35, 39, 47, 0.1);
    17    border-top-style: solid;
    18    border-top-width: 1px;
    19    font-size: 1.25rem;
    20  
    21    h2 {
    22      font-size: 2rem;
    23    }
    24    h3 {
    25      font-size: 1.5rem;
    26    }
    27  
    28    html[data-theme='dark'] & {
    29      background-image: conic-gradient(
    30        from -90deg at 110% 100%,
    31        #2b303b 0deg,
    32        #16181d 90deg,
    33        #16181d 1turn
    34      );
    35      border-color: rgba(246, 247, 249, 0.1);
    36    }
    37  }
    38  
    39  .centered {
    40    display: flex;
    41    align-items: center;
    42    justify-content: center;
    43  }