aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/modal.scss
blob: 37d8669831ccec7bb55c120b184e9468789d2a42 (plain) (blame)
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
.modal-contents {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DIN OT';
}

@media screen and (max-width: 575px) {
  .buy-options {
    flex-direction: column;
    padding: 5% 33%;
  }

  div.buy-option {
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: 15vh;
    margin: 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid black;
    padding: 0% 7%;
    justify-content: space-around;

    div.buy-option-title {
      font-size: 20px;
    }

    div.buy-option-subtitle {
      font-size: 16px;
    }
  }
}

@media screen and (min-width: 576px) {
  .buy-options {
    flex-direction: row;
  }

  div.buy-option {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 135px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid black;
    padding: 0% 7%;

    div.buy-option-title {
      font-size: 1.55em;
      margin-top: 22%;
    }

    div.buy-option-subtitle {
      font-size: 0.95em;
      margin-top: 15%;
    }
  }
}