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

homepage.scss « _components « styles « src - github.com/eshlox/simplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3268d27f6d157a50c6fe926b04cb3d7a6ce91971 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
body {
  main {
    .homepage-avatar {
      @include element-margin($itemMargin, false, false);

      border-radius: 50%;
    }

    .social-icons {
      a {
        background-color: $color-silver;
        display: inline-block;
        height: 20px;
        margin: 0.1rem 0;
        padding: 5px;
        width: 20px;

        svg {
          fill: #fff;
        }

        &.email {
          background-color: #D14836;
        }
        &.telegram {
          background-color: #2CA5E0;
        }
        &.twitter {
          background-color: #1DA1F2;
        }
        &.github {
          background-color: #181717;
        }
        &.stackoverflow {
          background-color: #FE7A16;
        }
        &.spotify {
          background-color: #1ED760;
        }
        &.google-plus {
          background-color: #DC4E41;
        }
        &.linkedin {
          background-color: #0077B5;
        }
        &.messenger {
          background-color: #0084FF;
        }
        &.facebook {
          background-color: #3B5998;
        }
        &.rss {
          background-color: #FFA500;
        }
      }
    }
  }
}