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

_redundant.scss « css « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d0b86d278ae1ba38f47c0f761f6b7495c5a170c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
*::-webkit-scrollbar {
  width: 12px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background-color: $toprak;
  outline: 1px solid $toprak;
}

*::-webkit-scrollbar-track {
  background-color: lighten($toprak, 50%);
}

::selection {
  background: $toprak;
  color: white;
}

::-moz-selection {
  background: $toprak;
  color: white;
}