3.0.0 -> 3.0.1
[bootswatch] / cyborg / bootswatch.less
1 // Cyborg 3.0.1
2 // Bootswatch
3 // -----------------------------------------------------
4
5 @import url("//fonts.googleapis.com/css?family=Droid+Sans:400,700");
6
7 // Navbar =====================================================================
8
9 .navbar {
10
11         border-bottom: 1px solid @gray-dark;
12 }
13
14 // Buttons ====================================================================
15
16 // Typography =================================================================
17
18 .text-primary {
19         color: @brand-primary;
20 }
21
22 .text-success {
23         color: @brand-success;
24 }
25
26 .text-danger {
27         color: @brand-danger;
28 }
29
30 .text-warning {
31         color: @brand-warning;
32 }
33
34 .text-info {
35         color: @brand-info;
36 }
37
38 // Tables =====================================================================
39
40 .table {
41
42         tr.success,
43         tr.warning,
44         tr.danger {
45                 color: #fff;
46         }
47 }
48
49 .table-responsive > .table {
50         background-color: @table-bg;
51 }
52
53 // Forms ======================================================================
54
55 .has-warning {
56         .help-block,
57         .control-label {
58                 color: @brand-warning;
59         }
60
61         .form-control,
62         .form-control:focus {
63                 border-color: @brand-warning;
64         }
65 }
66
67 .has-error {
68         .help-block,
69         .control-label {
70                 color: @brand-danger;
71         }
72
73         .form-control,
74         .form-control:focus {
75                 border-color: @brand-danger;
76         }
77 }
78
79 .has-success {
80         .help-block,
81         .control-label {
82                 color: @brand-success;
83         }
84
85         .form-control,
86         .form-control:focus {
87                 border-color: @brand-success;
88         }
89 }
90
91 legend {
92         color: #fff;
93 }
94
95 .input-group-addon {
96         background-color: @btn-default-bg;
97 }
98
99 // Navs =======================================================================
100
101 .nav {
102
103         .caret,
104         a:hover .caret {
105                 border-top-color: #fff;
106                 border-bottom-color: #fff;
107         }
108 }
109
110 .nav-tabs,
111 .nav-pills,
112 .breadcrumb,
113 .pagination,
114 .pager {
115
116         a {
117                 color: #fff;
118         }
119 }
120
121 // Indicators =================================================================
122
123 .alert {
124
125         .alert-link,
126         a {
127                 color: @alert-warning-text;
128                 text-decoration: underline;
129         }
130 }
131
132 // Progress bars ==============================================================
133
134 // Containers =================================================================
135
136 .jumbotron {
137
138         h1, h2, h3, h4, h5, h6 {
139                 color: #fff;
140         }
141 }