diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-04-06 17:58:05 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-04-06 17:58:05 -0400 |
| commit | f4b648ce919ddef49c6634372f1db57130678a6c (patch) | |
| tree | d5cfb61fb710f1eec51e2eb206babd3d2505eeda | |
| parent | ae685a3a3e0427b9bf47a73f0f170235e469c979 (diff) | |
cursor images/css
| -rw-r--r-- | public/assets/img/d-white.png | bin | 0 -> 1198 bytes | |||
| -rw-r--r-- | public/assets/img/l-white.png | bin | 0 -> 1232 bytes | |||
| -rw-r--r-- | public/assets/img/l.png | bin | 187 -> 2869 bytes | |||
| -rw-r--r-- | public/assets/img/r-white.png | bin | 0 -> 1219 bytes | |||
| -rw-r--r-- | public/assets/img/u-white.png | bin | 0 -> 1153 bytes | |||
| -rw-r--r-- | public/assets/img/u.png | bin | 288 -> 2971 bytes | |||
| -rw-r--r-- | public/assets/img/x-w-white.png | bin | 0 -> 1203 bytes | |||
| -rw-r--r-- | public/assets/img/x-white.png | bin | 0 -> 1322 bytes | |||
| -rw-r--r-- | public/assets/ok.css | 18 |
9 files changed, 15 insertions, 3 deletions
diff --git a/public/assets/img/d-white.png b/public/assets/img/d-white.png Binary files differnew file mode 100644 index 0000000..13edce0 --- /dev/null +++ b/public/assets/img/d-white.png diff --git a/public/assets/img/l-white.png b/public/assets/img/l-white.png Binary files differnew file mode 100644 index 0000000..ead74c7 --- /dev/null +++ b/public/assets/img/l-white.png diff --git a/public/assets/img/l.png b/public/assets/img/l.png Binary files differindex 383e388..bcd4aea 100644 --- a/public/assets/img/l.png +++ b/public/assets/img/l.png diff --git a/public/assets/img/r-white.png b/public/assets/img/r-white.png Binary files differnew file mode 100644 index 0000000..d4f3163 --- /dev/null +++ b/public/assets/img/r-white.png diff --git a/public/assets/img/u-white.png b/public/assets/img/u-white.png Binary files differnew file mode 100644 index 0000000..d850c89 --- /dev/null +++ b/public/assets/img/u-white.png diff --git a/public/assets/img/u.png b/public/assets/img/u.png Binary files differindex 530d460..7c4da62 100644 --- a/public/assets/img/u.png +++ b/public/assets/img/u.png diff --git a/public/assets/img/x-w-white.png b/public/assets/img/x-w-white.png Binary files differnew file mode 100644 index 0000000..3a3522a --- /dev/null +++ b/public/assets/img/x-w-white.png diff --git a/public/assets/img/x-white.png b/public/assets/img/x-white.png Binary files differnew file mode 100644 index 0000000..66781bf --- /dev/null +++ b/public/assets/img/x-white.png diff --git a/public/assets/ok.css b/public/assets/ok.css index 876354b..ef2a209 100644 --- a/public/assets/ok.css +++ b/public/assets/ok.css @@ -275,8 +275,8 @@ nav svg g g:last-child rect { width: 70px; } -.navopen .item { - cursor: url(img/x-w.png) 32 32, pointer; +.navopen #curtain { + cursor: url(img/x-w-white.png) 32 32, pointer; } @@ -523,6 +523,9 @@ body { margin-left: 20vw; cursor: url(img/u.png) 32 0, pointer; } +.whiteCursor .page-up { + cursor: url(img/u-white.png) 32 0, pointer; +} .page-down { height: 70%; @@ -532,7 +535,10 @@ body { bottom: 0; left: 0; margin-left: 20vw; - cursor: url(img/d.png)32 64, pointer; + cursor: url(img/d.png) 32 64, pointer; +} +.whiteCursor .page-down { + cursor: url(img/d-white.png) 32 64, pointer; } .single .page-up, @@ -583,12 +589,18 @@ button.next { cursor: url(img/r.png)64 32, pointer; z-index: 4; } +.whiteCursor button.next { + cursor: url(img/r-white.png)64 32, pointer; +} button.previous { left: 0; cursor: url(img/l.png) 0 32, pointer; z-index: 4; } +.whiteCursor button.previous { + cursor: url(img/l-white.png) 0 32, pointer; +} .desktop button.previous:hover svg, .desktop button.next:hover svg { |
