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

_cursors.scss « utilities « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a50ae09cae1ccf94aaeeec58e181e87ebc7907c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Cursors
.c-hand {
  cursor: pointer;
}
.c-move {
  cursor: move;
}
.c-zoom-in {
  cursor: zoom-in;
}
.c-zoom-out {
  cursor: zoom-out;
}
.c-not-allowed {
  cursor: not-allowed;
}
.c-auto {
  cursor: auto;
}