-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.less
More file actions
63 lines (53 loc) · 1.14 KB
/
style.less
File metadata and controls
63 lines (53 loc) · 1.14 KB
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
html,
body {
margin: 0;
padding: 0;
line-height: 1;
}
@row-height: 48px;
.row {
margin: 0 0 10px;
height: @row-height * 1.5;
position: relative;
.line {
position: absolute;
width: 100%;
height: 1px;
&.l1 {
border-top: 1px solid rgba(153, 0, 0, 0.5);
top: calc(0px)
}
&.l2 {
border-top: 1px solid rgba(0, 0, 0, 0.5);
top: calc(@row-height / 3 + 0px)
}
&.l3 {
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
top: calc(@row-height * 2 / 3 + 0px)
}
&.l4 {
border-bottom: 1px solid rgba(153, 0, 0, 0.5);
top: calc(@row-height + 0px)
}
}
input {
font-size: @row-height * 5 / 6;
font-family: 'Spartan', sans-serif;
background: transparent;
padding: 0;
border: none;
width: 100%;
line-height: 1;
outline: none;
letter-spacing: @row-height/-12;
}
}
.action {
border: 1px dashed #35cce6;
padding: 10px;
}
@media print {
.action {
display: none;
}
}