Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_contact.scss « components « scss « assets - github.com/StaticMania/portio-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f426fbac43b3e5eced9450d2bca207d52de6493 (plain)
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
.contact__info {
  &_item {
    box-shadow: 0px 20px 40px 0px rgba(50, 65, 141, 0.12);
    padding: 50px 40px;
    border-radius: 20px;
    &-icon {
      height: 110px;
      width: 125px;
      position: relative;
      margin-bottom: 35px;
      .icon-background {
        position: absolute;
        top: 0;
        right: 0;
      }
      .icon {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
      }
    }
    a {
      color: $body-color;
      text-decoration: underline;
    }
  }
}
.contact-form {
  padding: 50px 0 100px 0;
  &-input {
    .form-group {
      margin-bottom: 30px;
    }
  }
  #map {
    border-radius: 30px;
    height: 100%;
    @include desktop {
      height: 400px;
      margin-top: 60px;
    }
  }
}