Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
styles.module.css 1.53 KiB
Newer Older
  • Learn to ignore specific revisions
  • .featureSvg {
      height: 200px;
      width: 200px;
      border-radius: 50%;
      margin-bottom: 1rem;
      border: 6px solid var(--ifm-color-primary);
      background-color: var(--alterning-bkg);
    }
    
    .teamElement {
      display: flex;
      flex-direction: row;
      margin-bottom: 3rem;
    }
    
    .teamElement h3 {
      color: var(--ifm-color-primary);
    }
    
    .teamElement:nth-child(even) {
      display: flex;
      flex-direction: row-reverse;
    }
    
    .featureElement:hover {
      text-decoration: none;
    }
    
    .teamPicture { 
      position: relative;
    }
    
    .teamDescription {
      margin-left: 5rem;
    }
    
    .teamDescription p, .teamDescription h3 {
      text-align: left;
      max-width: 860px;
    }
    
    .teamElement:nth-child(even) .teamDescription {
      margin-right: 5rem;
    }
    
    .teamElement:nth-child(even) p, .teamElement:nth-child(even) h3 {
      text-align: right;
    }
    
    .linkedinButton {
      font-size: 3rem;
      position: absolute;
      top: 150px;
      left: 0;
      color: #0e76a8;
    }
    
    .linkedinButton:hover {
      color: #5da8d0;
    }
    
    .teamElement:nth-last-child(1) .featureSvg {
      border: 6px solid var(--ifm-color-success);
    }
    
    .teamElement:nth-last-child(1) h3 {
      color: var(--ifm-color-success);
    }
    
    @media (max-width: 768px) {
      .teamPicture {
        margin: 0 auto;
      }
    
      .teamDescription {
        margin: 0 auto;
      }
    
      .teamElement:nth-child(even) .teamDescription {
        margin: 0 auto;
      }
    
      .teamDescription p, .teamDescription h3, .teamDescription:nth-child(even) p, .teamDescription:nth-child(even) h3 {
        text-align: center;
      }
    
    
      .teamElement {
        flex-direction: column;
      }
    
      .teamElement:nth-child(even) {
        flex-direction: column;
      }
      
      
    }