blob: 13580f33c5aa4cbe9a1b6566f6de0fe66be06722 (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
@font-face {
font-family: "Symbola";
font-weight: bold;
src: url('Symbola.ttf');
}
.tab-pane {
display: none;
}
.tab-pane:target {
display: block;
}
.list-inline > li {
padding-top: 5px;
padding-bottom: 5px;
}
.item-icon {
display:inline-block;
font-size: 4em;
font-family: "Symbola";
}
.list-group-item > .label {
float:right;
}
#tab2 > ul > li > button {
width: 9em;
height: 9em;
}
#tab3 > ul > li > button {
width: 10em;
height: 10em;
}
.label {
font-size: 1.2em;
}
.list-group > button {
border-radius: 0;
}
.footer {
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
padding: 0.7em 0;
text-align: center;
width: auto;
}
.footer p {
color: #777;
margin-bottom: 0;
}
a {
color: #5cb85c;
}
/* color: hotpink;
}
.label-success {
background-color: hotpink;
}
.btn-success {
background-color: hotpink;
border-color: deeppink;
}
.btn-success:hover {
background-color: pink;
border-color: hotpink;
}
.btn-success.active.focus, .btn-success.active:focus,
.btn-success.active:hover, .btn-success.focus:active,
.btn-success:active:focus, .btn-success:active:hover,
.btn-success.focus, .btn-success:focus {
background-color: deeppink;
border-color: magenta;
}
.panel-success {
border-color: lightpink;
}
.panel-success > .panel-heading {
background-color: pink;
color: deeppink;
border-color: lightpink;
}
.alert-success {
color: deeppink;
border-color: lightpink;
background-color: pink;
}
*/
|