mod_auth_openid_loginpage 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/public/css/bootstrap-responsive.css +815 -0
- data/public/css/bootstrap-responsive.min.css +9 -0
- data/public/css/bootstrap.css +4983 -0
- data/public/css/bootstrap.min.css +9 -0
- data/public/img/glyphicons-halflings-white.png +0 -0
- data/public/img/glyphicons-halflings.png +0 -0
- data/public/js/bootstrap-alert.js +90 -0
- data/public/js/bootstrap-button.js +96 -0
- data/public/js/bootstrap-carousel.js +169 -0
- data/public/js/bootstrap-collapse.js +157 -0
- data/public/js/bootstrap-dropdown.js +100 -0
- data/public/js/bootstrap-modal.js +218 -0
- data/public/js/bootstrap-popover.js +98 -0
- data/public/js/bootstrap-scrollspy.js +151 -0
- data/public/js/bootstrap-tab.js +135 -0
- data/public/js/bootstrap-tooltip.js +275 -0
- data/public/js/bootstrap-transition.js +61 -0
- data/public/js/bootstrap-typeahead.js +285 -0
- data/public/js/bootstrap.js +1825 -0
- data/public/js/bootstrap.min.js +6 -0
- data/public/js/jquery.js +9252 -0
- data/public/js/jquery.tablesorter.min.js +4 -0
- data/public/js/less-1.3.0.min.js +9 -0
- data/public/less/accordion.less +33 -0
- data/public/less/alerts.less +58 -0
- data/public/less/bootstrap.less +62 -0
- data/public/less/breadcrumbs.less +24 -0
- data/public/less/button-groups.less +191 -0
- data/public/less/buttons.less +191 -0
- data/public/less/carousel.less +121 -0
- data/public/less/close.less +29 -0
- data/public/less/code.less +57 -0
- data/public/less/component-animations.less +20 -0
- data/public/less/dropdowns.less +143 -0
- data/public/less/forms.less +583 -0
- data/public/less/grid.less +5 -0
- data/public/less/hero-unit.less +22 -0
- data/public/less/labels-badges.less +55 -0
- data/public/less/layouts.less +17 -0
- data/public/less/mixins.less +646 -0
- data/public/less/modals.less +90 -0
- data/public/less/navbar.less +358 -0
- data/public/less/navs.less +363 -0
- data/public/less/pager.less +36 -0
- data/public/less/pagination.less +56 -0
- data/public/less/popovers.less +49 -0
- data/public/less/progress-bars.less +117 -0
- data/public/less/reset.less +131 -0
- data/public/less/responsive-1200px-min.less +26 -0
- data/public/less/responsive-767px-max.less +149 -0
- data/public/less/responsive-768px-979px.less +17 -0
- data/public/less/responsive-navbar.less +153 -0
- data/public/less/responsive-utilities.less +41 -0
- data/public/less/responsive.less +48 -0
- data/public/less/scaffolding.less +29 -0
- data/public/less/sprites.less +191 -0
- data/public/less/tables.less +176 -0
- data/public/less/tests/css-tests.css +52 -0
- data/public/less/tests/css-tests.html +917 -0
- data/public/less/tests/forms.html +179 -0
- data/public/less/tests/navbar.html +108 -0
- data/public/less/thumbnails.less +47 -0
- data/public/less/tooltip.less +35 -0
- data/public/less/type.less +232 -0
- data/public/less/utilities.less +23 -0
- data/public/less/variables.less +206 -0
- data/public/less/wells.less +27 -0
- data/views/layout.erb +61 -0
- data/views/login_page.erb +9 -0
- metadata +190 -0
@@ -0,0 +1,179 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>Bootstrap, from Twitter</title>
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7
|
+
<meta name="description" content="">
|
8
|
+
<meta name="author" content="">
|
9
|
+
|
10
|
+
<!-- Le styles -->
|
11
|
+
<link href="../../docs/assets/css/bootstrap.css" rel="stylesheet">
|
12
|
+
<link href="../../docs/assets/css/bootstrap-responsive.css" rel="stylesheet">
|
13
|
+
<style>
|
14
|
+
body {
|
15
|
+
padding-top: 30px;
|
16
|
+
padding-bottom: 30px;
|
17
|
+
}
|
18
|
+
</style>
|
19
|
+
|
20
|
+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
21
|
+
<!--[if lt IE 9]>
|
22
|
+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
23
|
+
<![endif]-->
|
24
|
+
|
25
|
+
<!-- Le fav and touch icons -->
|
26
|
+
<link rel="shortcut icon" href="../../docs/assets/ico/favicon.ico">
|
27
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../docs/assets/ico/apple-touch-icon-144-precomposed.png">
|
28
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../docs/assets/ico/apple-touch-icon-114-precomposed.png">
|
29
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../docs/assets/ico/apple-touch-icon-72-precomposed.png">
|
30
|
+
<link rel="apple-touch-icon-precomposed" href="../../docs/assets/ico/apple-touch-icon-57-precomposed.png">
|
31
|
+
</head>
|
32
|
+
|
33
|
+
<body>
|
34
|
+
|
35
|
+
<form class="container">
|
36
|
+
|
37
|
+
<div class="page-header">
|
38
|
+
<h1>Form controls</h1>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="row">
|
42
|
+
<div class="span4">
|
43
|
+
|
44
|
+
<label>Select</label>
|
45
|
+
<select>
|
46
|
+
<option>Select</option>
|
47
|
+
<option>Option 2</option>
|
48
|
+
<option>Option 3</option>
|
49
|
+
</select>
|
50
|
+
|
51
|
+
<hr>
|
52
|
+
|
53
|
+
<label>textarea</label>
|
54
|
+
<textarea>Textarea</textarea>
|
55
|
+
|
56
|
+
<hr>
|
57
|
+
|
58
|
+
<label>text</label>
|
59
|
+
<input type="text" value="Text input">
|
60
|
+
|
61
|
+
<hr>
|
62
|
+
|
63
|
+
<label>password</label>
|
64
|
+
<input type="password" value="Password input">
|
65
|
+
|
66
|
+
<hr>
|
67
|
+
|
68
|
+
<label>checkbox</label>
|
69
|
+
<input type="checkbox" value="">
|
70
|
+
|
71
|
+
<hr>
|
72
|
+
|
73
|
+
<label>radio</label>
|
74
|
+
<input type="radio" value="">
|
75
|
+
|
76
|
+
<hr>
|
77
|
+
|
78
|
+
<label>button</label>
|
79
|
+
<input type="button" value="Button">
|
80
|
+
|
81
|
+
<hr>
|
82
|
+
|
83
|
+
<label>submit</label>
|
84
|
+
<input type="submit" value="Submit">
|
85
|
+
|
86
|
+
<hr>
|
87
|
+
|
88
|
+
<label>reset</label>
|
89
|
+
<input type="reset" value="Reset">
|
90
|
+
|
91
|
+
</div><!-- /span4 -->
|
92
|
+
<div class="span4">
|
93
|
+
|
94
|
+
<label>file</label>
|
95
|
+
<input type="file" value="">
|
96
|
+
|
97
|
+
<hr>
|
98
|
+
|
99
|
+
<label>hidden</label>
|
100
|
+
<input type="hidden" value="hidden">
|
101
|
+
|
102
|
+
<hr>
|
103
|
+
|
104
|
+
<label>image</label>
|
105
|
+
<input type="image" value="">
|
106
|
+
|
107
|
+
<hr>
|
108
|
+
|
109
|
+
<label>datetime</label>
|
110
|
+
<input type="datetime" value="">
|
111
|
+
|
112
|
+
<hr>
|
113
|
+
|
114
|
+
<label>datetime-local</label>
|
115
|
+
<input type="datetime-local" value="">
|
116
|
+
|
117
|
+
<hr>
|
118
|
+
|
119
|
+
<label>date</label>
|
120
|
+
<input type="date" value="">
|
121
|
+
|
122
|
+
<hr>
|
123
|
+
|
124
|
+
<label>month</label>
|
125
|
+
<input type="month" value="">
|
126
|
+
|
127
|
+
<hr>
|
128
|
+
|
129
|
+
<label>time</label>
|
130
|
+
<input type="time" value="">
|
131
|
+
|
132
|
+
<hr>
|
133
|
+
|
134
|
+
<label>week</label>
|
135
|
+
<input type="week" value="">
|
136
|
+
|
137
|
+
</div><!-- /span4 -->
|
138
|
+
<div class="span4">
|
139
|
+
|
140
|
+
<label>number</label>
|
141
|
+
<input type="number" value="">
|
142
|
+
|
143
|
+
<hr>
|
144
|
+
|
145
|
+
<label>range</label>
|
146
|
+
<input type="range" value="">
|
147
|
+
|
148
|
+
<hr>
|
149
|
+
|
150
|
+
<label>email</label>
|
151
|
+
<input type="email" value="">
|
152
|
+
|
153
|
+
<hr>
|
154
|
+
|
155
|
+
<label>url</label>
|
156
|
+
<input type="url" value="">
|
157
|
+
|
158
|
+
<hr>
|
159
|
+
|
160
|
+
<label>search</label>
|
161
|
+
<input type="search" value="">
|
162
|
+
|
163
|
+
<hr>
|
164
|
+
|
165
|
+
<label>tel</label>
|
166
|
+
<input type="tel" value="">
|
167
|
+
|
168
|
+
<hr>
|
169
|
+
|
170
|
+
<label>color</label>
|
171
|
+
<input type="color" value="">
|
172
|
+
|
173
|
+
</div><!-- /span4 -->
|
174
|
+
</div><!-- /row -->
|
175
|
+
|
176
|
+
</form> <!-- /container -->
|
177
|
+
|
178
|
+
</body>
|
179
|
+
</html>
|
@@ -0,0 +1,108 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>Bootstrap, from Twitter</title>
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7
|
+
<meta name="description" content="">
|
8
|
+
<meta name="author" content="">
|
9
|
+
|
10
|
+
<!-- Le styles -->
|
11
|
+
<link href="../../docs/assets/css/bootstrap.css" rel="stylesheet">
|
12
|
+
<style>
|
13
|
+
body {
|
14
|
+
padding-top: 60px;
|
15
|
+
padding-bottom: 30px;
|
16
|
+
}
|
17
|
+
</style>
|
18
|
+
<link href="../../docs/assets/css/bootstrap-responsive.css" rel="stylesheet">
|
19
|
+
|
20
|
+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
21
|
+
<!--[if lt IE 9]>
|
22
|
+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
23
|
+
<![endif]-->
|
24
|
+
|
25
|
+
<!-- Le fav and touch icons -->
|
26
|
+
<link rel="shortcut icon" href="../../docs/assets/ico/favicon.ico">
|
27
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../docs/assets/ico/apple-touch-icon-144-precomposed.png">
|
28
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../docs/assets/ico/apple-touch-icon-114-precomposed.png">
|
29
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../docs/assets/ico/apple-touch-icon-72-precomposed.png">
|
30
|
+
<link rel="apple-touch-icon-precomposed" href="../../docs/assets/ico/apple-touch-icon-57-precomposed.png">
|
31
|
+
</head>
|
32
|
+
|
33
|
+
<body>
|
34
|
+
|
35
|
+
<!-- Fixed navbar -->
|
36
|
+
<div class="navbar navbar-fixed-top">
|
37
|
+
<div class="navbar-inner">
|
38
|
+
<div class="container">
|
39
|
+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
40
|
+
<span class="icon-bar"></span>
|
41
|
+
<span class="icon-bar"></span>
|
42
|
+
<span class="icon-bar"></span>
|
43
|
+
</a>
|
44
|
+
<a class="brand" href="#">Project name</a>
|
45
|
+
<div class="nav-collapse">
|
46
|
+
<ul class="nav">
|
47
|
+
<li class="active"><a href="#">Home</a></li>
|
48
|
+
<li><a href="#about">About</a></li>
|
49
|
+
<li><a href="#contact">Contact</a></li>
|
50
|
+
</ul>
|
51
|
+
</div><!--/.nav-collapse -->
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div class="container">
|
57
|
+
|
58
|
+
<!-- Static navbar -->
|
59
|
+
<div class="navbar">
|
60
|
+
<div class="navbar-inner">
|
61
|
+
<div class="container">
|
62
|
+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
63
|
+
<span class="icon-bar"></span>
|
64
|
+
<span class="icon-bar"></span>
|
65
|
+
<span class="icon-bar"></span>
|
66
|
+
</a>
|
67
|
+
<a class="brand" href="#">Project name</a>
|
68
|
+
<div class="nav-collapse">
|
69
|
+
<ul class="nav">
|
70
|
+
<li class="active"><a href="#">Home</a></li>
|
71
|
+
<li><a href="#about">About</a></li>
|
72
|
+
<li><a href="#contact">Contact</a></li>
|
73
|
+
</ul>
|
74
|
+
</div><!--/.nav-collapse -->
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<!-- Main hero unit for a primary marketing message or call to action -->
|
80
|
+
<div class="hero-unit">
|
81
|
+
<h1>Navbar example</h1>
|
82
|
+
<p>This example is a quick exercise to illustrate how the default, static navbar and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p>
|
83
|
+
<p>
|
84
|
+
<a class="btn btn-large btn-primary" href="../components.html#navbar">View navbar docs »</a>
|
85
|
+
</p>
|
86
|
+
</div>
|
87
|
+
|
88
|
+
</div> <!-- /container -->
|
89
|
+
|
90
|
+
<!-- Le javascript
|
91
|
+
================================================== -->
|
92
|
+
<!-- Placed at the end of the document so the pages load faster -->
|
93
|
+
<script src="../assets/js/jquery.js"></script>
|
94
|
+
<script src="../assets/js/bootstrap-transition.js"></script>
|
95
|
+
<script src="../assets/js/bootstrap-alert.js"></script>
|
96
|
+
<script src="../assets/js/bootstrap-modal.js"></script>
|
97
|
+
<script src="../assets/js/bootstrap-dropdown.js"></script>
|
98
|
+
<script src="../assets/js/bootstrap-scrollspy.js"></script>
|
99
|
+
<script src="../assets/js/bootstrap-tab.js"></script>
|
100
|
+
<script src="../assets/js/bootstrap-tooltip.js"></script>
|
101
|
+
<script src="../assets/js/bootstrap-popover.js"></script>
|
102
|
+
<script src="../assets/js/bootstrap-button.js"></script>
|
103
|
+
<script src="../assets/js/bootstrap-collapse.js"></script>
|
104
|
+
<script src="../assets/js/bootstrap-carousel.js"></script>
|
105
|
+
<script src="../assets/js/bootstrap-typeahead.js"></script>
|
106
|
+
|
107
|
+
</body>
|
108
|
+
</html>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
// THUMBNAILS
|
2
|
+
// ----------
|
3
|
+
// Note: `.thumbnails` and `.thumbnails > li` are overriden in responsive files
|
4
|
+
|
5
|
+
// Make wrapper ul behave like the grid
|
6
|
+
.thumbnails {
|
7
|
+
margin-left: -@gridGutterWidth;
|
8
|
+
list-style: none;
|
9
|
+
.clearfix();
|
10
|
+
}
|
11
|
+
// Fluid rows have no left margin
|
12
|
+
.row-fluid .thumbnails {
|
13
|
+
margin-left: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
// Float li to make thumbnails appear in a row
|
17
|
+
.thumbnails > li {
|
18
|
+
float: left; // Explicity set the float since we don't require .span* classes
|
19
|
+
margin-bottom: @baseLineHeight;
|
20
|
+
margin-left: @gridGutterWidth;
|
21
|
+
}
|
22
|
+
|
23
|
+
// The actual thumbnail (can be `a` or `div`)
|
24
|
+
.thumbnail {
|
25
|
+
display: block;
|
26
|
+
padding: 4px;
|
27
|
+
line-height: 1;
|
28
|
+
border: 1px solid #ddd;
|
29
|
+
.border-radius(4px);
|
30
|
+
.box-shadow(0 1px 1px rgba(0,0,0,.075));
|
31
|
+
}
|
32
|
+
// Add a hover state for linked versions only
|
33
|
+
a.thumbnail:hover {
|
34
|
+
border-color: @linkColor;
|
35
|
+
.box-shadow(0 1px 4px rgba(0,105,214,.25));
|
36
|
+
}
|
37
|
+
|
38
|
+
// Images and captions
|
39
|
+
.thumbnail > img {
|
40
|
+
display: block;
|
41
|
+
max-width: 100%;
|
42
|
+
margin-left: auto;
|
43
|
+
margin-right: auto;
|
44
|
+
}
|
45
|
+
.thumbnail .caption {
|
46
|
+
padding: 9px;
|
47
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
// TOOLTIP
|
2
|
+
// ------=
|
3
|
+
|
4
|
+
.tooltip {
|
5
|
+
position: absolute;
|
6
|
+
z-index: @zindexTooltip;
|
7
|
+
display: block;
|
8
|
+
visibility: visible;
|
9
|
+
padding: 5px;
|
10
|
+
font-size: 11px;
|
11
|
+
.opacity(0);
|
12
|
+
&.in { .opacity(80); }
|
13
|
+
&.top { margin-top: -2px; }
|
14
|
+
&.right { margin-left: 2px; }
|
15
|
+
&.bottom { margin-top: 2px; }
|
16
|
+
&.left { margin-left: -2px; }
|
17
|
+
&.top .tooltip-arrow { #popoverArrow > .top(); }
|
18
|
+
&.left .tooltip-arrow { #popoverArrow > .left(); }
|
19
|
+
&.bottom .tooltip-arrow { #popoverArrow > .bottom(); }
|
20
|
+
&.right .tooltip-arrow { #popoverArrow > .right(); }
|
21
|
+
}
|
22
|
+
.tooltip-inner {
|
23
|
+
max-width: 200px;
|
24
|
+
padding: 3px 8px;
|
25
|
+
color: @white;
|
26
|
+
text-align: center;
|
27
|
+
text-decoration: none;
|
28
|
+
background-color: @black;
|
29
|
+
.border-radius(4px);
|
30
|
+
}
|
31
|
+
.tooltip-arrow {
|
32
|
+
position: absolute;
|
33
|
+
width: 0;
|
34
|
+
height: 0;
|
35
|
+
}
|
@@ -0,0 +1,232 @@
|
|
1
|
+
// Typography.less
|
2
|
+
// Headings, body text, lists, code, and more for a versatile and durable typography system
|
3
|
+
// ----------------------------------------------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// BODY TEXT
|
7
|
+
// ---------
|
8
|
+
|
9
|
+
p {
|
10
|
+
margin: 0 0 @baseLineHeight / 2;
|
11
|
+
small {
|
12
|
+
font-size: @baseFontSize - 2;
|
13
|
+
color: @grayLight;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
.lead {
|
17
|
+
margin-bottom: @baseLineHeight;
|
18
|
+
font-size: 20px;
|
19
|
+
font-weight: 200;
|
20
|
+
line-height: @baseLineHeight * 1.5;
|
21
|
+
}
|
22
|
+
|
23
|
+
// HEADINGS
|
24
|
+
// --------
|
25
|
+
|
26
|
+
h1, h2, h3, h4, h5, h6 {
|
27
|
+
margin: 0;
|
28
|
+
font-family: @headingsFontFamily;
|
29
|
+
font-weight: @headingsFontWeight;
|
30
|
+
color: @headingsColor;
|
31
|
+
text-rendering: optimizelegibility; // Fix the character spacing for headings
|
32
|
+
small {
|
33
|
+
font-weight: normal;
|
34
|
+
color: @grayLight;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
h1 {
|
38
|
+
font-size: 30px;
|
39
|
+
line-height: @baseLineHeight * 2;
|
40
|
+
small {
|
41
|
+
font-size: 18px;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
h2 {
|
45
|
+
font-size: 24px;
|
46
|
+
line-height: @baseLineHeight * 2;
|
47
|
+
small {
|
48
|
+
font-size: 18px;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
h3 {
|
52
|
+
font-size: 18px;
|
53
|
+
line-height: @baseLineHeight * 1.5;
|
54
|
+
small {
|
55
|
+
font-size: 14px;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
h4, h5, h6 {
|
59
|
+
line-height: @baseLineHeight;
|
60
|
+
}
|
61
|
+
h4 {
|
62
|
+
font-size: 14px;
|
63
|
+
small {
|
64
|
+
font-size: 12px;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
h5 {
|
68
|
+
font-size: 12px;
|
69
|
+
}
|
70
|
+
h6 {
|
71
|
+
font-size: 11px;
|
72
|
+
color: @grayLight;
|
73
|
+
text-transform: uppercase;
|
74
|
+
}
|
75
|
+
|
76
|
+
// Page header
|
77
|
+
.page-header {
|
78
|
+
padding-bottom: @baseLineHeight - 1;
|
79
|
+
margin: @baseLineHeight 0;
|
80
|
+
border-bottom: 1px solid @grayLighter;
|
81
|
+
}
|
82
|
+
.page-header h1 {
|
83
|
+
line-height: 1;
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
// LISTS
|
89
|
+
// -----
|
90
|
+
|
91
|
+
// Unordered and Ordered lists
|
92
|
+
ul, ol {
|
93
|
+
padding: 0;
|
94
|
+
margin: 0 0 @baseLineHeight / 2 25px;
|
95
|
+
}
|
96
|
+
ul ul,
|
97
|
+
ul ol,
|
98
|
+
ol ol,
|
99
|
+
ol ul {
|
100
|
+
margin-bottom: 0;
|
101
|
+
}
|
102
|
+
ul {
|
103
|
+
list-style: disc;
|
104
|
+
}
|
105
|
+
ol {
|
106
|
+
list-style: decimal;
|
107
|
+
}
|
108
|
+
li {
|
109
|
+
line-height: @baseLineHeight;
|
110
|
+
}
|
111
|
+
ul.unstyled,
|
112
|
+
ol.unstyled {
|
113
|
+
margin-left: 0;
|
114
|
+
list-style: none;
|
115
|
+
}
|
116
|
+
|
117
|
+
// Description Lists
|
118
|
+
dl {
|
119
|
+
margin-bottom: @baseLineHeight;
|
120
|
+
}
|
121
|
+
dt,
|
122
|
+
dd {
|
123
|
+
line-height: @baseLineHeight;
|
124
|
+
}
|
125
|
+
dt {
|
126
|
+
font-weight: bold;
|
127
|
+
line-height: @baseLineHeight - 1; // fix jank Helvetica Neue font bug
|
128
|
+
}
|
129
|
+
dd {
|
130
|
+
margin-left: @baseLineHeight / 2;
|
131
|
+
}
|
132
|
+
// Horizontal layout (like forms)
|
133
|
+
.dl-horizontal {
|
134
|
+
dt {
|
135
|
+
float: left;
|
136
|
+
width: 120px;
|
137
|
+
clear: left;
|
138
|
+
text-align: right;
|
139
|
+
.text-overflow();
|
140
|
+
}
|
141
|
+
dd {
|
142
|
+
margin-left: 130px;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
// MISC
|
147
|
+
// ----
|
148
|
+
|
149
|
+
// Horizontal rules
|
150
|
+
hr {
|
151
|
+
margin: @baseLineHeight 0;
|
152
|
+
border: 0;
|
153
|
+
border-top: 1px solid @hrBorder;
|
154
|
+
border-bottom: 1px solid @white;
|
155
|
+
}
|
156
|
+
|
157
|
+
// Emphasis
|
158
|
+
strong {
|
159
|
+
font-weight: bold;
|
160
|
+
}
|
161
|
+
em {
|
162
|
+
font-style: italic;
|
163
|
+
}
|
164
|
+
.muted {
|
165
|
+
color: @grayLight;
|
166
|
+
}
|
167
|
+
|
168
|
+
// Abbreviations and acronyms
|
169
|
+
abbr[title] {
|
170
|
+
cursor: help;
|
171
|
+
border-bottom: 1px dotted @grayLight;
|
172
|
+
}
|
173
|
+
abbr.initialism {
|
174
|
+
font-size: 90%;
|
175
|
+
text-transform: uppercase;
|
176
|
+
}
|
177
|
+
|
178
|
+
// Blockquotes
|
179
|
+
blockquote {
|
180
|
+
padding: 0 0 0 15px;
|
181
|
+
margin: 0 0 @baseLineHeight;
|
182
|
+
border-left: 5px solid @grayLighter;
|
183
|
+
p {
|
184
|
+
margin-bottom: 0;
|
185
|
+
#font > .shorthand(16px,300,@baseLineHeight * 1.25);
|
186
|
+
}
|
187
|
+
small {
|
188
|
+
display: block;
|
189
|
+
line-height: @baseLineHeight;
|
190
|
+
color: @grayLight;
|
191
|
+
&:before {
|
192
|
+
content: '\2014 \00A0';
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
// Float right with text-align: right
|
197
|
+
&.pull-right {
|
198
|
+
float: right;
|
199
|
+
padding-right: 15px;
|
200
|
+
padding-left: 0;
|
201
|
+
border-right: 5px solid @grayLighter;
|
202
|
+
border-left: 0;
|
203
|
+
p,
|
204
|
+
small {
|
205
|
+
text-align: right;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
// Quotes
|
211
|
+
q:before,
|
212
|
+
q:after,
|
213
|
+
blockquote:before,
|
214
|
+
blockquote:after {
|
215
|
+
content: "";
|
216
|
+
}
|
217
|
+
|
218
|
+
// Addresses
|
219
|
+
address {
|
220
|
+
display: block;
|
221
|
+
margin-bottom: @baseLineHeight;
|
222
|
+
font-style: normal;
|
223
|
+
line-height: @baseLineHeight;
|
224
|
+
}
|
225
|
+
|
226
|
+
// Misc
|
227
|
+
small {
|
228
|
+
font-size: 100%;
|
229
|
+
}
|
230
|
+
cite {
|
231
|
+
font-style: normal;
|
232
|
+
}
|