aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/modal.scss
blob: 8bf7cd44f6a7b54dafe411ac99e0e0d88b09709f (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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.modal-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DIN OT';
}

@media screen and (max-width: 575px) {
  .modal-content-title-wrapper {
    justify-content: space-around;
    width: 100%;
    height: 100px;
  }

  .modal-content-title {
    font-size: 26px;
    margin-top: 15px;
  }

  .modal-content-options {
    flex-direction: column;
    padding: 5% 33%;
  }

  .modal-content-footer {
    text-transform: uppercase;
    width: 100%;
    height: 50px;
  }

  div.modal-content-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.modal-content-option-title {
      font-size: 20px;
    }

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

@media screen and (min-width: 576px) {
  .modal-content-title-wrapper {
    justify-content: space-around;
    width: 100%;
    height: 110px;
  }

  .modal-content-title {
    font-size: 26px;
    margin-top: 15px;
  }

  .modal-content-footer {
    text-transform: uppercase;
    width: 100%;
    height: 50px;
  }

  .modal-content-options {
    flex-direction: row;
    margin: 20px 0;
  }

  div.modal-content-option {
    display: flex;
    flex-direction: column;
    width: 20vw;
    height: 18vw;
    text-align: center;
    border-radius: 6px;
    border: 1px solid $black;
    margin: 0 .5vw;
    justify-content: space-around;

    div.modal-content-option-title {
      font-size: 20px;

      @media screen and (max-width: 679px) {
        font-size: 14px;
      }

      @media screen and (min-width: 1281px) {
        font-size: 26px;
      }
    }

    div.modal-content-option-subtitle {
      font-size: 16px;
      padding: 0 10px;
      height: 25%;

      @media screen and (max-width: 679px) {
        font-size: 10px;
        padding: 0 10px;
        margin-bottom: 5px;
        line-height: 15px;
      }

      @media screen and (min-width: 680px) {
        font-size: 14px;
        padding: 0 4px;
        margin-bottom: 2px;
      }

      @media screen and (min-width: 1281px) {
        font-size: 20px;
        padding: 0;
      }
    }

    div.modal-content-footer {
      margin-top: 8vh;
    }
  }
}