diff options
| author | “Ryder <“r@okfoc.us”> | 2016-03-29 12:59:40 -0400 |
|---|---|---|
| committer | “Ryder <“r@okfoc.us”> | 2016-03-29 12:59:40 -0400 |
| commit | fa313e781f0aff437f8f631030e9b55da9c05b02 (patch) | |
| tree | 184cd6bee433ff442c31e4794cd3b49ee86374ff | |
| parent | 9caa4dec9468be2da599959dd0b73d958a71a1aa (diff) | |
cursor offset
| -rw-r--r-- | db.json | 7 | ||||
| -rw-r--r-- | public/assets/ok.css | 13 |
2 files changed, 13 insertions, 7 deletions
@@ -159,7 +159,12 @@ "containImage": "false", "__index": "0", "dateCreated": "Tue, 29 Mar 2016 15:45:57 GMT", - "press": [] + "press": [ + { + "text": "google", + "uri": "google.com" + } + ] } ], "page": [ diff --git a/public/assets/ok.css b/public/assets/ok.css index 64d139d..03b0a3b 100644 --- a/public/assets/ok.css +++ b/public/assets/ok.css @@ -26,6 +26,7 @@ a:visited { color: blue; font-weight: bold; font-size: 11px; + cursor:pointer; } body { @@ -167,7 +168,7 @@ menu ul { opacity: 0.1; transition: 150ms opacity cubic-bezier(0, 0, 0, 1); background: #eee; - cursor: url(img/x-w.png), pointer; + cursor: url(img/x-w.png) 32 32, pointer; } div, @@ -311,7 +312,7 @@ nav b { position: absolute; z-index: 3; margin-left: 20vw; - cursor: url(img/u.png), pointer; + cursor: url(img/u.png) 32 0, pointer; } @@ -323,7 +324,7 @@ nav b { z-index: 3; bottom:0; margin-left: 20vw; - cursor: url(img/d.png), pointer; + cursor: url(img/d.png)32 64, pointer; } .flickity-viewport { @@ -355,12 +356,12 @@ button svg { button.next { right: 0; - cursor: url(img/r.png), pointer; + cursor: url(img/r.png)64 32, pointer; } button.previous { left: 0; - cursor: url(img/l.png), pointer; + cursor: url(img/l.png) 0 32, pointer; } .desktop button.previous:hover svg, @@ -396,7 +397,7 @@ button.previous { flex: 0 auto; overflow: hidden; padding: 5px 0; - cursor: url(img/d.png), pointer; + cursor: url(img/d.png)32 64, pointer; } .five { |
