-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.less
More file actions
50 lines (43 loc) · 731 Bytes
/
Copy pathstyles.less
File metadata and controls
50 lines (43 loc) · 731 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
@light-border: #000066;
@light-border-hover: white;
@light-off: #0000FF;
@light-on: #FFFF33;
.light-row {
display: table;
}
.light-cell {
border: 1px solid @light-border;
display: inline-block;
padding: 10px 15px;
cursor: pointer;
&:hover {
border: 1px solid @light-border-hover;
}
}
.light-on {
background: @light-on;
}
.light-off {
background: @light-off;
color: white;
}
.board {
.noselect;
display: flex;
flex-direction: column;
align-items: center;
select {
margin: 5px;
}
}
.solution {
opacity: 0.2;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}