Skip to content
Snippets Groups Projects
Select Git revision
  • 52754156a9500dae28dd64e508cfd461a52949bf
  • master default protected
  • feat-create_little_container_for_developer
  • feat/pipeline_publish_extension
  • feat-publish_extension_on_marketplace_with_ci
  • feat-log-in
  • feat-connect_uri_handler_with_chosse_workdir_and_connection
  • feat-choose-mission-workdir
  • 10-en-tant-qu-etudiant-je-souhaite-pouvoir-lancer-une-mission-de-type-vscode-desktop-sur-mon-ide
  • new-building-way-recorder
  • fix-commit-any-challenge-type
  • recorder-push-code
  • theia-extension
  • 0.1.2
  • 0.1.1
  • 0.0.6
  • 1.4
  • 1.3
  • 1.2
  • 1.1
20 results

deadlock-coding-0.0.1.vsix

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;
        }
    
      }
    }