Skip to content
Snippets Groups Projects
Select Git revision
  • 1dd6b980b28f8826fdcdeb7266d0e7b5c4979a98
  • main default protected
2 results

style.css

Blame
  • style.css 592 B
    @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
    
    html, body {
      width: 90vw;
      margin: 0px;
      background: #ffffff;
      font-family: 'Roboto', sans-serif;
      line-height: 1.5;
      padding: 1em;
      padding-bottom: 2em;
    }
    
    .author {
      font-size: 0.8em;
    }
    
    main {
      width: 60%;
      margin: auto;
      color: #313030;
    }
    
    a {
      color: #606ab5;
    }
    
    .center {
      width: 100%;
      display: flex;
    }
    
    img {
      width: 100%;
      margin: auto;
      max-width: 100%;
      border-radius: 0.8em;
    }
    
    @media only screen and (max-width: 600px) {
      main {
        width: 100%;
      }
      img {
        width: 100%;
      }
    }