aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/index.scss
blob: e3aca069497584b315aa990409cc073725ab2873 (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
@import './welcome/index';

@import './seed-phrase/index';

.first-time-flow {
  width: 100%;
  background-color: $white;

  &__wrapper {
    @media screen and (min-width: $break-large) {
      padding: 60px 275px 0 275px;
    }

    @media screen and (max-width: 1100px) {
      padding: 36px;
    }
  }

  &__form {
    display: flex;
    flex-direction: column;
  }

  &__header {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }

  &__subheader {
    margin-bottom: 16px;
  }

  &__input {
    max-width: 350px;
  }

  &__textarea-wrapper {
    margin-bottom: 8px;
    display: inline-flex;
    padding: 0;
    position: relative;
    min-width: 0;
    flex-direction: column;
    max-width: 350px;
  }

  &__textarea-label {
    margin-bottom: 9px;
    color: #1B344D;
    font-size: 18px;
  }

  &__textarea {
    font-size: 1rem;
    font-family: Roboto;
    height: 190px;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 16px;
    margin-top: 8px;
  }

  &__breadcrumbs {
    margin: 36px 0;
  }

  &__unique-image {
    margin-bottom: 20px;
  }

  &__markdown {
    border: 1px solid #979797;
    border-radius: 8px;
    background-color: $white;
    height: 200px;
    overflow-y: auto;
    color: #757575;
    font-size: .75rem;
    line-height: 15px;
    text-align: justify;
    margin: 0;
    padding: 16px 20px;
    height: 30vh;
  }

  &__text-block {
    margin-bottom: 24px;

    @media screen and (max-width: $break-small) {
      margin-bottom: 16px;
      font-size: .875rem;
    }
  }

  &__button {
    margin: 35px 0 14px;
  }
}