blob: 20c85f66557a54cbfe0732f6713b75fa5fe9301b (
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
|
.result {
width: 100%;
position: relative;
margin-bottom: 12px;
ul {
clear: left;
float: left;
list-style: none;
position: relative;
left: 45%;
text-align: center;
li {
display: block;
float: left;
list-style: none;
position: relative;
right: 50%;
border: 1px solid darken(@well-bg, 7%);
border-radius: @border-radius-base;
padding: @padding-large-vertical @padding-large-horizontal;
margin-right: 10px;
&:first-child {
margin-left: 10px;
}
&:last-child {
margin-right: 10px;
}
span {
display: block;
}
span.result-match {
font-size: @font-size-large;
margin-bottom: 8px;
}
span.result-entropy {
font-size: ceil(@font-size-base * 1.1);
margin-bottom: 4px;
}
span.result-description {
font-size: @font-size-small;
}
}
}
.crack {
text-align: center;
font-size: ceil(@font-size-base * 1.1);
}
}
.examples {
text-align: right;
margin-bottom: 12px;
p:last-child {
margin-bottom: 0;
}
}
.introduction {
margin-bottom: 12px;
}
|