Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_code_of_conduct.scss « pages « styles « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ea7c0bdbe7008e1223659ae9d8b77da387b4d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

.page.code-of-conduct {


  main h1, #TableOfContents, main .content {
    max-width: var(--theJdrSize);
    margin: 0 auto;
  }


  .content {

    p {
      margin-left: var(--space-4);
      text-align: justify;

      &::first-letter {
        margin-left: var(--space-4);
      }
    }

    ul {
      margin-left: 2rem;

      li {
        line-height: 1.25;
      }
    }
  }
}

@include mq($until: xl) {
  .page.code-of-conduct {
    .content {
      padding: 0 .5em;
    }
  }
}