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

_base.scss « sass « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4d76b168afe9c83830a0dc31d4cfca4a7b53dba (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

* {
    margin: 0;
    padding: 0;
  }
  
  
  body {
    background: #FFF;
    font-family: $font-1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  a {
    text-decoration: none;
  }
  
  li {
    list-style-type: square;
    padding-left: 0px;
    list-style-position: inside;
    margin: 8px 0;
  }
  
  .resumeCanvas {
    margin: 2.5rem auto;
    padding: 0 0.45in 0.5in 0.45in;
    width: 8.25in;
    height: 11.75in;
    background-color: #FFF;
    -moz-box-shadow: 2px 2px 10px #aaa;
    -webkit-box-shadow: 2px 2px 10px #aaa;
    box-shadow: 2px 2px 10px #aaa;
    box-sizing: border-box;
  }
  
  .gridParent {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  
  .flex-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .titleHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: $font-1;
    h1 {
      font-size: 64px;
      color: $heading-color;
      letter-spacing: 0.15rem;
    }
  }
  
  header {
    grid-area: 1 / 1 / 2 / 8;
    border-bottom: $border-color 1px solid;
  }
  
  .leftSide {
    grid-area: 2 / 1 / 7 / 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: $border-color 1px solid;
    padding-right: 16px;
  }
  
  .rightSide {
    grid-area: 2 / 6 / 7 / 8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 8px;
    
    li {
      list-style-type: none;
      padding: 0;
    }
  }
  
  .leftSide, .rightSide {
    margin-top: 12px;
    font-size: 14px;
    h1, h2, h3 {
      line-height: 1.2;
    }
    h1 {
      margin-bottom: 16px;
      font-size: 24px;
    }
    h2 {
      font-size: 20px;
      margin-bottom: 4px;
    }
    h3 {
      font-size: 16px;
    }
    p {
      font-size: 14px;
      margin: 8px 0;
      line-height: 1.5;
      text-align: justify;
    }
  }