-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCursor.css
48 lines (42 loc) · 1.16 KB
/
Cursor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@charset "EUC-KR";
body
{
font-weight: bold;
}
#box
{
text-align: center;
display: inline-block;
border: 1px solid;
padding: 5px;
margin: 5px;
}
span
{
display: inline-block;
border: 1px solid;
padding: 5px;
margin: 5px;
}
.auto { cursor: auto; }
.crosshair { cursor: crosshair; }
.default { cursor: default; }
.help { cursor: help; }
.text { cursor: text; }
.wait { cursor: wait; }
.n-resize { cursor: n-resize; }
.s-resize { cursor: s-resize; }
.ne-resize { cursor: ne-resize; }
.sw-resize { cursor: sw-resize; }
.nw-resize { cursor: nw-resize; }
.se-resize { cursor: se-resize; }
.e-resize { cursor: e-resize; }
.w-resize { cursor: w-resize; }
.pointer { cursor: pointer; }
.progress { cursor: progress; }
.not-allowed { cursor: not-allowed; }
.no-drop { cursor: no-drop; }
.vertical-text { cursor: vertical-text;}
.all-scroll { cursor: all-scroll; }
.col-resize { cursor: col-resize; }
.row-resize { cursor: row-resize; }