Blame view

public/scss/pages/main/banner.scss 914 Bytes
b80175387   Андрей Ларионов   Начальный проект ...
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
  @import "../../mixins";
  
  .banner {
      padding-top: 81px;
  }
      
  .banner-container {
      min-height: 214px;
      background-image: url("../img/main/banner.png");
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: column;
      align-items: start;
  
      &__title {
          font-weight: 600;
          font-size: 24px;
          line-height: 29px;
          letter-spacing: -0.01em;
          text-transform: uppercase;
          color: #E7EAEE;
          padding-top: 51px;
          margin-left: 74px;
          max-width: 400px;
          width: 100%;
      }
  
       &__button {
          @include btn-orange;
          padding: 15px 51px;
          margin-left: 74px;
          margin-top: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          align-self: start;
  
          &:hover {
              @include btn-orange-hover;
          }
       }
    }