-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (91 loc) · 1.87 KB
/
style.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
html {
background: ghostwhite;
/*height: 100%;*/
font-family: "Futura",sans-serif;
border: 0 solid #2F0028;
border-bottom-width: 100vh;
height: 200%;
}
head {
display: block
}
title {
font-size: 162pt;
background:
linear-gradient(
50deg,
rgb(218, 196, 255)37%,
rgb(167, 214, 194)71%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: block;
text-align: center;
padding:28px 0 3px;
-webkit-user-select: none;
cursor: default;
position: absolute;
left: 0;
right: 0;
}
body {
position: relative;
height: 800px;
margin: 340px auto;
width: 600px;
border: 18px ridge #FFECFC;
background: linear-gradient(
56.4deg,
rgb(228, 220, 242)52%,
rgba(255, 255, 255, 0.93)52%);
}
canvas {
width: 100%;
display: block;
height: 100%;
}
spool {
position: absolute;
border-radius: 50%;
/*background-color: rebeccapurple;*/
border: 18px solid transparent;
}
spool:hover {
background: ghostwhite;
cursor: -webkit-grab;
}
spool.draggable {
background: ghostwhite;
cursor: -webkit-grabbing!important;
}
spool.draggable input {
border-color: transparent;
/*background:transparent;*/
background: purple;
}
input {
border: 4px double #524E73;
width: 84px;
height: 84px;
border-radius: 50%;
background-color: #FFF5FD;
font-family: "helvetica neue", sans-serif;
text-align: center;
font-size: 8pt;
}
input:focus {
outline: none;
box-shadow:
inset 0 0 0 2px white,
inset 0 0 0 3px #B166D0,
inset 0 0 0 5px white,
inset 0 0 0 6px #8E8E8E;
background: white;
}