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

_team.scss « pages « style « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e8e52da170bf96147645e4a48d611ef68f5ed51 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.section.team {

  h2 {
    margin: var(--space-4) 0;
  }

  ul.members {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;

    & > li {
      flex: 1 1 300px;
      margin: 2rem;
      display: flex;

      .photo {
        --size: 6rem;
        box-shadow: 0 0 0 var(--space-2) var(--darken-2);
        min-width: var(--size, 6rem);
        height: var(--size, 6rem);
        border-radius: 100%;
        background-size: cover;

        margin: var(--space-2);
      }

      .label {
        display: flex;
        margin-left: var(--space-3);
        flex-direction: column;
        justify-content: center;
      }

      ul.socials {
        list-style: none;
        //display: flex;
        margin: 0;
        padding: 0;
        font-size: 1.5em;

        li {
          display: inline-block;
          opacity: .5;
          filter: grayscale(1);
          transition: filter var(--animation);

          &:hover,
          &:focus {
            opacity: 1;
            filter: grayscale(0);
          }
        }
      }
    }
  }


  .partners-group ul li  {
    flex-basis: 260px;
    margin: var(--space-3);
    height: var(--partner-gold-height);
  }
}