-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcursor.css
More file actions
72 lines (58 loc) · 775 Bytes
/
Copy pathcursor.css
File metadata and controls
72 lines (58 loc) · 775 Bytes
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
html {
font-size: 20px;
}
body{
background-color: #f2eee3;
}
h1{
text-align: center;
color: rgb(222, 79, 79)
}
.demo {
width: 250px;
height: 80px;
border: solid;
display: inline-block;
text-align: center;
font-size: 20px;
background-color: #ccffcc;
}
div.waiting{
cursor: wait;
}
div.help{
cursor: help;
}
div.crosshair{
cursor: crosshair;
}
div.grab{
cursor: grab;
}
div.alias{
cursor: alias;
}
div.pointer{
cursor: pointer;
}
div.copy{
cursor: copy;
}
div.not-allowed{
cursor: not-allowed;
}
div.cell{
cursor: cell;
}
div.no-drop{
cursor: no-drop;
}
.wrapper{
display: flex;
flex-wrap: wrap;
padding-top: 100px;
}
.gap {
row-gap: 1rem;
column-gap: 1rem;
}