Blame view

frontend/web/css/_home-page.scss 3.82 KB
bc9815fa   Anastasia   layout
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
  
  .section-first-home {
    color: #fff;
    min-height: 480px;
    background: url("../images/slider-home/bg-1.jpg") 50% 0 no-repeat;
  }
  
  .first-home-title {
    text-align: center;
    padding-top: 160px;
    span {
      font-size: 48px;
      font-weight: 700;
      line-height: 58px;
      text-shadow: 0px 0px 12px rgba(8, 71, 142, 0.65);
    }
  }
  
  .first-home-links {
    margin-top: 77px;
    a{
      margin-top: 15px;
      display: block;
      width: 100%;
      height: 80px;
      position: relative;
      text-align: center;
      text-decoration: none !important;
      background: #77ca3b;
      span {
        padding-left: 53px;
        color: #fff;
        text-transform: uppercase;
        font-size: 17px;
        font-weight: 700;
        position: relative;
        line-height: 80px;
        &:before {
          @include svgIcon;
          color: #fff;
          content: '\e900';
          font-size: 30px;
          display: block;
          position: absolute;
          left: 0;
          top: 50%;
          margin-top: -15px;
        }
      }
      &.first-home-reg {
        background: $blue-color;
        span {
          &:before {
            content: '\e901';
          }
        }
        &:hover {
          background: $blue-color-hover;
        }
      }
      &:hover {
        @include Transition(0.3);
        background: #63a831;
      }
    }
  }
  
  .section-second {
    padding-top: 76px;
    padding-bottom: 60px;
  }
  
  .section-speakers {
    background: #f3f4f5;
    padding-top: 36px;
    padding-bottom: 28px;
  }
  
  .speakers-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
  }
  
  
  .items-home-col {
    text-align: center;
    margin-top: 20px;
  }
  .items-home {
    width: 100%;
    max-width: 262px;
    display: inline-block;
    text-align: left;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(153, 164, 172, 0.35);
    border-bottom: 2px solid #cbcdcf;
    padding-bottom: 24px;
  }
  
  .items-home-img {
c95b1c94   Виталий   speakers 2
102
    a, span {
bc9815fa   Anastasia   layout
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
      display: block;
      img {
        max-width: 100%;
      }
    }
  }
  
  .items-home-name {
    text-transform: uppercase;
    color: #0288d1;
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    padding-left: 20px;
  }
  
  .items-home-job {
    padding-left: 20px;
    margin-top: 9px;
    line-height: 17px;
a3cb92ba   Виталий   корпоратив-фикс))
123
124
    //height: 34px;
    height: 51px;
bc9815fa   Anastasia   layout
125
    overflow: hidden;
9cbb62fe   Виталий   корпоратив-фикс)) 4
126
  
bc9815fa   Anastasia   layout
127
128
129
130
131
132
133
134
135
136
137
138
  }
  .items-home-country-wr {
    width: 100%;
    display: table;
    padding-left: 15px;
  }
  .items-home-country {
    display: table-cell;
    width: 100%;
    height: 63px;
    vertical-align: bottom;
  
57d65be7   Виталий   speakers
139
    a, span {
bc9815fa   Anastasia   layout
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
      font-size: 14px;
      color: $main-color;
      font-weight: 700;
      line-height: 15px;
      padding-right: 36px;
      display: block;
      position: relative;
      &:before {
        @include svgIcon;
        content: '\e902';
        color: $blue-color;
        position: absolute;
        bottom: 4px;
        right: 20px;
        font-size: 10px;
        width: 6px;
        height: 10px;
      }
    }
57d65be7   Виталий   speakers
159
160
161
162
163
    span {
      &:before {
        display: none;
      }
    }
bc9815fa   Anastasia   layout
164
165
  }
  
69f06692   Виталий   корпоратив-фикс)) 7
166
167
168
  .section-second-img {
    float: left;
    max-width: 100%;
c32e4017   Виталий   imgs
169
170
    //width: 300px;
    width: 150px;
69f06692   Виталий   корпоратив-фикс)) 7
171
172
173
    margin-right: 30px;
    margin-top: 25px;
    margin-bottom: 3px;
c32e4017   Виталий   imgs
174
  
69f06692   Виталий   корпоратив-фикс)) 7
175
  }
bc9815fa   Anastasia   layout
176
177
178
179
180
181
182
183
184
185
186
187
  
  @media (max-width: 991px) {
    .first-home-title {
      padding-top: 120px;
      span {
        font-size: 36px;
        line-height: 46px;
      }
    }
  }
  
  
69f06692   Виталий   корпоратив-фикс)) 7
188
189
190
191
192
  @media (max-width: 580px) {
    .section-second-img {
      float: none;
    }
  }
bc9815fa   Anastasia   layout
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  @media (max-width: 767px) {
    .speakers-title {
      text-align: center;
    }
    .first-home-title {
      span {
        font-size: 26px;
        line-height: 32px;
      }
    }
  }
  
  @media (max-width: 580px) {
    .first-home-links-col {
      width: 100% !important;
      &.col-xs-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    .first-home-links a {
      margin-top: 1px;
    }
    .first-home-links {
      position: absolute;
      left: 10px;
      bottom: -162px;
      width: 100%;
      margin-top: 0;
    }
    .section-first-home {
      min-height: 334px;
      height: 334px;
      margin-bottom: 162px;
    }
    .section-second {
      padding-top: 25px;
      padding-bottom: 18px;
    }
  }