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

_speaker.scss « pages « style « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5588048ca511cdc347d030f6a9e66804d9ca99fa (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.page.speakers {

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    display: flex;
    flex-direction: column;

    header, .description {
      padding: var(--space-4) var(--container-margin);
    }

    header {
      align-self: center;
      margin: 1em;
      padding-left: 0;
      max-width: var(--theJdrSize);

      display: flex;
      align-items: center;

      .speaker-img {
        --size: 6rem;
        height: var(--size, 6rem);
        min-width: var(--size, 6rem);
        border-radius: 100%;
        background-size: cover;
        box-shadow: 0 0 var(--space-3) var(--darken-3);
        margin-right: var(--space-4);
      }

      h1 {
        margin: 0;
        padding: 0;
      }

      ul.socials {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 1.25em;
        justify-content: flex-start;

        li {
          flex: 0 1 auto;
          padding-right: var(--space-4);
          a.social {
            width: auto;
            color: inherit;
            .icon {
              width: 1em;
            }
          }
        }

      }
    }


    .description {

      .talks {
        padding-left: 0;
        list-style: none;

        .talk {
          border: thin solid var(--darken-1);
          display: inline-flex;
          padding: var(--space-2);
          border-radius: var(--space-1);

          .tags, .language {
            margin-right: 1ch;
          }

          .tags {
            white-space: nowrap;
            align-self: center;
          }

          &.tag- {
            display: none;
          }
        }
      }
    }
  }

  section.speaker {
    align-self: center;
    margin: 1em;
    max-width: var(--theJdrSize);

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .speaker-company {
      margin: var(--space-3) 0;
      display: flex;
      align-items: center;
    }
  }
}