blob: 5ca45411876f6d60653f5871e4a9535fc2f2a021 (
plain)
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
|
@left-margin: 30px;
.body {
}
.header .title {
line-height: 32px;
padding-left: 15px;
}
.darkBg {
background-color: #333;
padding: 8px;
position: absolute;
height: 100%;
width: 100%;
display: -webkit-flex;
display: flex;
.header {
.title {
font-weight: bold;
color: white;
display: inline-block;
//margin-left: 8px;
font-size: 120%;
h1 {
margin: 0px;
}
}
}
}
.lightFg {
border-radius: 4px;
background-color: #fff;
}
.key-list-item {
border-bottom: 1px solid #ccc;
.top-row {
&:hover {
background-color: #eee;
}
padding: 15px;
font-weight: bold;
font-size: 1.2em;
&:first-child {
border-radius: 4px 4px 0 0;
}
}
.expander {
width: @left-margin;
float: left;
.glyphicon {}
}
.address {
margin-left: @left-margin;
word-break: break-all;
}
.details {
margin-left: @left-margin;
padding: 15px;
}
.btn-toolbar {
margin-top: 15px;
}
.labels .label {
margin-left: 6px;
}
}
|