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

_section.scss « css « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 737d9955baca9ee20103f3477ce4d179960bb3e7 (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
.section {
  margin-bottom: 1.5rem;

  > *:last-child {
    margin-bottom: 0;
  }

  .right-column & {
    margin-bottom: 1rem;
  }
}

.section-title {
  font-family: $font-1;
}

.item {
  margin-bottom: 0.6rem;

  dl {
    dt {
      display: inline;
      font-weight: 600;

      &::after {
        content: ': '
      }
    }

    dd {
      display: inline;

      &:not(:last-child)::after {
        content: "";
        display: block;
        margin-bottom: 0.4em;
      }

      *:not(:last-child)::after {
        content: "; ";
        margin-right: 0.25rem;
      }

    }
  }

  &.group {
    margin-bottom: 1rem;
    .item {
      margin-top: 0;
    }
  }
  &.group:last-child {
    margin-bottom: 0;
  }
}

.item-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.item-info {
  font-weight: 400;
  font-size: 14px;
}

.job-title {
  font-size: 14px;
  font-weight: 600;
}

.soft-color {
 color: scale-color($text-color, $lightness: 30%);
}

main.paper .single-column,
main.paper .right-column,
main.paper .left-column,
.paper {
  .section-languages {
    .item {
      margin-bottom: 0.4rem;
    }

    h2 {
      margin-bottom: 0.1rem;
      font-size: 0.9rem;
      line-height: 1.1;

      span {
        font-weight: 400;
        font-size: 0.8rem;
      }
    }
  }
}