blob: cad20c0c3436b078551139ebda9832b047fe2528 (
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
|
@import 'bourbon';
$color_a: #A101A6;
$color_b: #D9005B;
$color_c: #84E900;
$color_d: #CFF700;
body {
background: #eee;
font-family: $lucida-grande;
header {
margin-bottom: 30px;
}
div.ip-address {
text-align: center;
div {
margin-top: 65px;
}
div.address {
input {
width: 3em;
font-size: 2.7em;
text-align: center;
border: 0px;
}
input.octet {
&:nth-child(1) { background-color: $color_a; }
&:nth-child(2) { background-color: $color_b; }
&:nth-child(3) { background-color: $color_c; }
&:nth-child(4) { background-color: $color_d; }
}
span.slash {
font-size: 2.7em;
text-align: center;
padding: 0.4em 0.6em;
}
input.cidr {
}
}
div.bits {
ol {
display: inline;
padding-left: 0px;
padding-right: 15px;
li {
display: inline;
ol {
li {
padding: 0.4em 0.6em;
margin-left: -1px;
border: 1px black solid;
}
}
}
}
}
}
footer {
margin-top: 50px;
text-align: center;
font-size: 0.7em;
}
}
|