Skip to content
Snippets Groups Projects
Select Git revision
  • a2bdf6cd4dc29b0a20cef30c34741061d1d7dad0
  • master default protected
  • docs-improve_user_path_description
  • fix-pipeline
  • ci-change_exercises_image_registry
  • feat-merge_recorder_in_extension
  • feat-default_folder
  • feat-change_user
  • develop protected
  • refactor-mission
  • feat-exercise_automatic_save
  • docs-improve_documentation
  • feat-create_little_container_for_developer
  • feat-local-dev
  • 0.1.12
  • 0.1.11
  • 0.1.10
  • 0.1.5
18 results

briefingView.ts

Blame
  • TopLinks.module.scss 794 B
    @import '../../../style/colors';
    @import '../../../style/fonts';
    
    
    .TopLinks {
    
      display: flex;
      font-family: $primary_font;
      font-weight: $primary_font_weight;
      color: $primary_black;
    
      .Logo {
        float: left;
        font-size: 2rem;
        color: $primary_black;
        text-decoration: none;
    
      }
    
      .Links {
        padding-left: 5%;
        max-width: 30vw;
        display: flex;
        flex-direction: row;
    
    
    
        .Link  {
          text-align: center;
          margin-left: 3%;
          min-width: fit-content;
    
          a {
            font-size: 0.8vw;
            color: $primary_black;
    
          }
        }
    
    
    
        a:hover{
          color: $primary_pink;
        }
      }
    
    }
    
    @media (max-width: 1200px) {
      .TopLinks {
        justify-content: center;
    
        .Logo {
          font-size: 5vw;
        }
    
        .Links {
          display: none;
        }
    
      }
    }