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

_partner.scss « pages « styles « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59e68cbd79a2e8dead60d33ff30a65123019b071 (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
.page.partners {

  .header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo title"
      "logo website";
    align-items: center;

    .card {
      grid-area: logo;
      height: 8em;
      width: 12em;
      padding: .25em;
      margin-right: 1em;
      box-shadow: .125em .125em .25em rgba(0, 0, 0, .5);
      
      display: flex;
      justify-content: center;
      align-items: center;

        &> * {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain;
          object-position: 50% 50%;
        }
      }


    h1 {
      grid-area: title;
      align-self: end;
      font-size: 2.5em;
    }
    a {
      grid-area: website;
      align-self: start;
    }
  }

  .content {

    img {
      max-width: 25vw;
    }
  }

  .why {
  }

  .socials {
    ul {
      margin: 0;
      list-style: none;
      padding-left: 0;
      display: flex;
      align-items: center;
      font-size: 2em;
      li {
        margin: .25em;
      }
    }
  }

  .jobs {
    ul {
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      padding-left: 0;

      .job {
        padding: .5em;
        margin: .5em;
        box-shadow: .125em .125em .25em rgba(0, 0, 0, .5);
        display: flex;
        flex-direction: column;

        header {
          font-size: 1.1em;
          font-weight: bold;
          font-style: italic;
          margin: .5em 0;
        }

        .city, .contact {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          color: #666;
          margin: .25em 0;

          .icon {
            width: 2ch;
          }
        }



      }
    }
  }
}