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

_curriculum.scss « sass « assets - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2def70259ed1cb086248bdad30734bc1b2c9e5dd (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
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
.curriculum {
  background-color: $theme-inverse-color;

  main {
    width: 100%;

    @media screen and (min-width: 1140px) {
      width: 1140px;
      margin: 0 auto;
    }

    header {
      text-align: center;
      padding: 30px 0 40px;

      h1 {
        font-size: 64px;
        font-weight: 900;
      }

      p {
        font-size: 22px;
        color: lighten($theme-color, 32%);
      }

      @media print {
        padding: 0;
      }
    }

    .content {
      display: flex;
      flex-direction: column-reverse;

      @media screen and (min-width: 1140px), print {
        flex-direction: row;
      }

      section {
        padding: 0 15px;
        margin-bottom: 60px;

        @media print {
          margin-bottom: 40px;
        }

        h3 {
          margin-bottom: 0;
        }

        .contact-item {
          line-height: 19px;
          margin-bottom: 24px;

          .inline-svg, a {
            vertical-align: top;
          }

          .inline-svg {
            height: 19px;
            width: 19px;
            line-height: 19px;
            padding: 2.5px 0;

            svg {
              height: 14px;
              width: 14px;
              line-height: 14px;
            }
          }
        }
      }
    }

    .left {
      width: 100%;

      @media screen and (min-width: 1140px) {
        flex: 0 0 34%;
        margin-left: 100px;
      }

      @media print {
        flex: 0 0 34%;
      }
    }

    .right {
      width: 100%;

      section {
        padding-bottom: 1px;
      }

      @media screen and (min-width: 1140px) {
        flex: 0 0 50%;
      }

      @media screen and (min-width: 1140px), print {
        section {
          border-left: 1px solid lighten($theme-color, 90%);
          padding: 0 15px 1px;
        }
      }
    }
  }

  @media print {
    nav {
      display: none;
    }

    p a, li a, .page li a, .nav a, header h1 a {
      border-bottom: none;
      text-decoration: none;

      &:hover, &:focus, &:active, &.active {
        border-bottom: none;
        text-decoration: none;
      }
    }
  }
}