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

_tickets.scss « partials « style « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2dc66fc9a784e248446d4014603f4c5d216ae54 (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

.tickets ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0;

  li {
    flex-basis: 15rem;
  }

  li .ticket {
    margin: var(--space-4);
    padding: 2rem var(--space-3);
    border: thin solid var(--darken-1);
    box-shadow: var(--space-1) var(--space-1) var(--space-2) var(--darken-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;

    &[aria-disabled] {
      opacity: .5;
      filter: grayscale(1);
      cursor: not-allowed;
    }


    .ticket-name {
      font-size: 1rem;
    }

    .ticket-price {
      font-size: 3.5rem;
      color: var(--primary);
      font-weight: 200;
    }

    .ticket-date, .ticket-info {
      font-size: .75rem;
      color: var(--darken-3);
    }

    .btn {
      margin: var(--space-4);
    }
  }
}