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

_base.scss « css « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93d415e6d93b3e1d9c3e7c648a088140e1c71ec1 (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
* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: $text-color;
  font-family: $font-1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: $text-color;

  i {
    padding: 0 0.2rem 0 0.25rem;
  }

  &:hover {
    text-decoration: underline;
  }

  &:not(.no-external-icon)::after {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    margin: 0 0.2rem 0 0.25rem;
  }
}

li {
  list-style-type: square;
  padding-left: 0px;
  list-style-position: inside;
  margin: 0.5rem 0;
}