Blame view

babylon-vue-4.0.0/src/assets/sass/layout/_help.scss 5.54 KB
0f94839d   함상기   babylon client fo...
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
  .help-wrapper{
      .help-header{
          background:  url("../../layout/images/extensions/rectangle.jpg") bottom;
          background-repeat: no-repeat;
          padding: 84px 0px 130px 0;
          display: flex;
          justify-content: center;
  
          .header-content {
              width: 50%;
              text-align: center;
  
              > h1 {
                  color: #3e4243;
                  font-size: 21px;
                  font-weight: 600;
                  margin: 0;
                  margin-bottom: 25px;
              }
  
              .search-form {
                  position: relative;
  
                   span {
                      width: 100%;
  
                       .p-autocomplete-input {
                          width: 100%;
                          padding: 10px;
                          padding-left: 30px;
  
                          &::placeholder {
                              color: #8b8b90;
                          }
                      }
                  }
  
                  > i {
                      position: absolute;
                      left: 10px;
                      top: 11px;
                      color: #8b8b90;
                      font-size: 16px;
                  }
              }
  
          }
      }
  
      .help-container{
          padding: 25px;
  
          .help-content-header {
              display: flex;
              justify-content: space-between;
  
              .help-content-header-tab {
                  width: 100%;
                  margin-right: 25px;
                  margin-bottom: 25px;
                  height: 100%;
                  border-radius: 3px;
                  border: solid 1px #ebebef;
                  display: flex;
                  align-items: center;
                  justify-content: flex-start;
                  padding: 25px 15px;
                  height: 100%;
                  cursor: pointer;
  
                  &:last-child{
                      margin-right: 0;
                  }
  
                  .tab-icon {
                      font-size: 36px;
                      color: #ffffff;
                      width: 50px;
                      height: 50px;
                      background-color: $topbarBgColor;
                      @include border-radius(50%);
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      margin-right: 12px;
                  }
  
                  .tab-content {
                      > h3 {
                          font-size: 16px;
                          font-weight: 600;
                          color: #3e4243;
                          margin: 0;
                          margin-bottom: 6px;
                      }
  
                      > span {
                          font-size: 13px;
                          color: #8b8b90;
                      }
                  }
  
                  &.selected-tab {
                      border: solid 1px $topbarBgColor;
                      background-color: lighten($color: $topbarBgColor, $amount: 45);
                      @include transition(background-color .3s);
  
                      .tab-icon {
                          color: $topbarBgColor;
                          background-color: #ffffff;
                      }
                  }
  
                  &:hover {
                      background-color: lighten($color: $topbarBgColor, $amount: 45);
                      @include transition(background-color .3s);
                  }
  
              }
          }
  
          .help-contents-wrapper {
              overflow: hidden;
  
              .help-contents-row {
                  display: flex;
                  flex-direction: row;
                  transition: transform 500ms ease 0s;
  
                  .help-content {
                      flex: 1 0 100%;
                      border-radius: 3px;
                      border: solid 1px #ebebef;
                      @include transition(transform 500ms ease 0s);
  
                      .questions-header {
                          display: flex;
                          justify-content: center;
                          flex-direction: column;
                          align-items: center;
                          margin-bottom: 40px;
  
                          h1 {
                              font-size: 21px;
                              font-weight: 600;
                              color: #3e4243;
                              margin: 0;
                              margin-bottom: 8px;
                          }
  
                          span {
                              font-size: 16px;
                              color: #8b8b90;
                          }
  
                          .profile-images {
                              margin-top: 8px;
                              padding: 0 40px 17px 40px;
  
                              border-bottom: 1px solid rgba(41, 43, 44, 0.1);
  
                              img {
                                  width: 40px;
                                  margin-right: 4px;
  
                                  &:last-child {
                                      margin-right: 0;
                                  }
                              }
                          }
                      }
                  }
              }
          }
  
      }
  }
  
  @media (max-width: 1150px) {
      .help-wrapper {
          .help-header {
              .header-content {
                  width: 90%;
              }
          }
  
          .help-container {
              padding: 25px 0;
  
              .help-content-header {
                  flex-direction: column;
  
                  .help-content-header-tab {
                      .tab-icon {
                          width: 35px;
                          height: 35px;
                      }
                  }
              }
          }
      }
  }