-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathla.css
101 lines (101 loc) · 1.61 KB
/
la.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
.la {
position: relative;
width: 100%;
height: 100%;
}
.la-block {
box-sizing: border-box;
height: 100%;
max-width: 100%;
max-height: 100%;
overflow: hidden;
text-align: center;
position: relative;
}
.la-block a.la-remove {
position: absolute;
top: 1em;
right: 1em;
display: none;
border: solid 1px rgba(0, 0, 0, 0);
text-decoration: none;
color: #000;
border-radius: 6px;
width: 20px;
text-align: center;
}
.la-block a.la-remove svg {
fill: #999;
pointer-events: none;
}
.la-block a.la-remove:hover {
border: solid 1px #999;
}
.la-block:hover a.la-remove {
display: block;
}
.la-block a.la-left,
.la-block a.la-right,
.la-block a.la-top,
.la-block a.la-bottom {
opacity: 0.3;
position: absolute;
box-sizing: border-box;
border: solid 1px #999;
}
.la-block a.la-left:hover,
.la-block a.la-right:hover,
.la-block a.la-top:hover,
.la-block a.la-bottom:hover {
opacity: 1;
background: #000;
}
.la-block a.la-left {
top: 0;
left: 0;
height: 100%;
width: 10px;
}
.la-block a.la-right {
top: 0;
right: 0;
height: 100%;
width: 10px;
}
.la-block a.la-top {
top: 0;
left: 0;
width: 100%;
height: 10px;
}
.la-block a.la-bottom {
bottom: 0;
left: 0;
width: 100%;
height: 10px;
}
.la-children {
display: grid;
height: 100%;
padding: 1em;
}
.la-name {
position: absolute;
bottom: 1.5em;
left: 1.5em;
font-size: 0.8em;
}
.la-selector {
box-sizing: border-box;
}
.la-selector a {
box-sizing: border-box;
text-decoration: none;
color: #000;
display: block;
width: 100%;
padding: 0.4em;
}
.la-selector a:hover {
background-color: #e2e2e2;
}