blob: 1145562f779f37ac9eeda7be9ccf3de3dc8c9086 (
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
|
// Shamrock 3.1.1
// Bootswatch
// -----------------------------------------------------
@import url('//fonts.googleapis.com/css?family=Marcellus');
// Navbar =====================================================================
// Buttons ====================================================================
// Typography =================================================================
h1:before {
content: "\2663";
margin-right: 10px;
}
.page-header {
border-bottom-width: 5px;
}
// Tables =====================================================================
// Forms ======================================================================
legend {
border-bottom-width: 5px;
}
// Navs =======================================================================
.nav {
.open > a,
.open > a:hover,
.open > a:focus {
border-color: transparent;
}
}
// Indicators =================================================================
.alert {
.alert-link {
color: @link-color
}
}
// Progress bars ==============================================================
// Containers =================================================================
.panel-default {
border-color: darken(@panel-footer-bg, 5%);
.panel-heading {
background-color: @panel-footer-bg;
border-color: darken(@panel-footer-bg, 5%);
color: #fff;
}
}
.modal {
background-color: @gray-light;
&-header {
border-bottom: none;
}
&-footer {
background-color: @gray-dark;
border-top: none;
.box-shadow(none);
}
}
|