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

_redundant.scss « sass « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d9d0160ab57430e690ed13c98692317cc243220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
*::-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;
}