-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (94 loc) · 1.56 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
table.command-list {
margin: 5px 0px;
border: 1px solid lightgray;
}
td {
text-align: center;
vertical-align: middle;
padding:2px 5px;
}
td.marker {
height:3px;
width:inherit;
background-color:white;
}
td.player {
padding:10px 20px;
width:100px;
font-weight: bold;
}
td.header {
background-color: grey;
font-weight: bold;
color:white;
}
td.next {
font-weight: bold;
color:lightgray;
}
td.selected {
background-color: gray !important;
}
td.gesture:hover {
cursor: pointer;
background-color: gray;
}
td.gesture:active {
cursor: pointer;
background-color: lightgray;
}
td.chain {
background-color: #dfdfdf;
}
td.pair {
background-color: #fffccc;
}
#toolbar {
background: grey;
padding: 5px;
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
}
#toolbar div.input {
margin-bottom: 5px;
}
.inline {
display: inline-block;
}
.header {
text-align: center;
font-weight: bold;
color:white;
}
.footer {
padding: 10px 0px;
}
.heading-sm {
color: #5bc0de;
font-size: 18px;
font-weight: 500;
line-height: 1.1;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
margin:5px 0px;
}
.heading-sub {
color: gray;
font-size: 14px;
line-height: 1.1;
font-weight:lighter;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
margin:2px 0px;
}
#ButtonSet:hover {
cursor: pointer;
}
.clickable:hover {
cursor: pointer;
}