forked from kpt2210/IPproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guitar.css
87 lines (75 loc) · 1.54 KB
/
guitar.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
div#lutemain1 {
vertical-align: middle;
margin-top: -50px;
}
div#lutelines {
display: inline-block;
height: 100%;
cursor: pointer;
margin-top: 100px;
}
div#vline1 {
/* Each string is one div tag */
width: 6px; /* string width */
background-color: #ffc023; /* string color */
height: 100%; /* Override in-line if you want specific height. */
float: left;
margin-left: 30px;
}
div#vline2 {
width: 6px;
background-color: #ffc023;
height: 100%;
float: left;
margin-left: 30px;
}
div#vline3 {
width: 6px;
background-color: #ffc023;
height: 100%;
float: left;
cursor: pointer;
margin-left: 30px;
}
div#vline4 {
width: 6px;
background-color: #ffc023;
height: 100%;
float: left;
cursor: pointer;
margin-left: 30px;
}
div#vline5 {
width: 6px;
background-color: #ffc023;
height: 100%;
float: left;
margin-left: 30px;
cursor: pointer;
margin-right: 30px;
}
div#vline1:hover {
background-color: #803d1d
}
div#vline2:hover {
background-color: #803d1d
}
div#vline3:hover {
background-color: #803d1d
}
div#vline4:hover {
background-color: #803d1d
}
div#vline5:hover {
background-color: #803d1d
}
div#lutecircle {
width: 280px;
height: 280px;
background: #000000;
border: 8px solid #ffc023;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
margin-top: -530px;
}