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

_item_styling.scss « sass « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef32ac238ac5aa7351dc4e3a2cf2dac32624b814 (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
.section {
    margin-bottom: 20px;
  }

.item {
  margin-bottom: 14px;
}

.section {
  .item:last-child {
    margin-bottom: 0px;
  }
}

.group {
  .item {
    margin-top: 0;
  }
}

.section-title {
  border-left: solid 6px $heading-color;
  padding-left: 8px;
  font-family: $font-1;
}

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

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

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


.avatar {
  display: block;
  margin: 1rem auto;
  padding: 1rem;
  object-fit: cover;
  height: 140px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}