Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
1af9ae16
Commit
1af9ae16
authored
Jul 10, 2014
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs change
parent
7cfaf2f2
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
91 deletions
+57
-91
docs/_layouts/default.html
docs/_layouts/default.html
+1
-1
docs/assets/css/docs.min.css
docs/assets/css/docs.min.css
+1
-1
docs/assets/less/docs.less
docs/assets/less/docs.less
+55
-89
No files found.
docs/_layouts/default.html
View file @
1af9ae16
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
</div>
</div>
</div>
</div>
<div
class=
"bs-docs-container"
>
<div
class=
"bs-docs-container
bs-docs-content
"
>
{{ content }}
{{ content }}
</div>
</div>
...
...
docs/assets/css/docs.min.css
View file @
1af9ae16
This diff is collapsed.
Click to expand it.
docs/assets/less/docs.less
View file @
1af9ae16
...
@@ -704,24 +704,20 @@ body {
...
@@ -704,24 +704,20 @@ body {
// Docs sections
// Docs sections
//
//
// Space things out
.bs-docs-content {
.bs-docs-section {
> h1 {
margin-bottom: 60px;
padding-top: 2rem;
}
margin-top: 3rem;
.bs-docs-section:last-child {
margin-bottom: 0;
+ p {
}
font-size: 1.25rem;
font-weight: 300;
}
}
.bs-docs-container > h1 {
> h2 {
padding-top: 2rem;
margin-top: 2.5rem;
margin-top: 3rem;
}
}
.bs-docs-container > h1 + p {
font-size: 1.25rem;
font-weight: 300;
}
.bs-docs-container > h2 {
margin-top: 2.5rem;
}
}
...
@@ -780,65 +776,34 @@ body {
...
@@ -780,65 +776,34 @@ body {
margin: 0 -5px;
margin: 0 -5px;
overflow: hidden; // clearfix
overflow: hidden; // clearfix
}
}
.color-swatch {
.color-swatch {
float: left;
float: left;
width: 60px;
width: 60px;
height: 60px;
height: 60px;
margin: 0 5px;
margin: 0 5px;
border-radius: 3px;
border-radius: 3px;
}
@media (min-width: 768px) {
@media (min-width: 768px) {
.color-swatch {
width: 100px;
width: 100px;
height: 100px;
height: 100px;
}
}
}
}
// Framework colors
.color-swatches .gray-darker {
background-color: @gray-darker;
}
.color-swatches .gray-dark {
background-color: @gray-dark;
}
.color-swatches .gray {
background-color: @gray;
}
.color-swatches .gray-light {
background-color: @gray-light;
}
.color-swatches .gray-lighter {
background-color: @gray-lighter;
}
.color-swatches .brand-primary {
background-color: @brand-primary;
}
.color-swatches .brand-success {
background-color: @brand-success;
}
.color-swatches .brand-warning {
background-color: @brand-warning;
}
.color-swatches .brand-danger {
background-color: @brand-danger;
}
.color-swatches .brand-info {
background-color: @brand-info;
}
// Docs colors
// Docs colors
.color-swatches .bs-purple {
.color-swatches {
background-color: @bs-purple;
.bs-purple {
}
background-color: @bs-purple;
.color-swatches .bs-purple-light {
}
background-color: @bs-purple-light;
.bs-purple-light {
}
background-color: @bs-purple-light;
.color-swatches .bs-purple-lighter {
}
background-color: #e5e1ea;
.bs-purple-lighter {
}
background-color: #e5e1ea;
.color-swatches .bs-gray {
}
background-color: #f9f9f9;
.bs-gray {
background-color: #f9f9f9;
}
}
}
...
@@ -846,25 +811,27 @@ body {
...
@@ -846,25 +811,27 @@ body {
// Team members
// Team members
//
//
.bs-team .team-member {
.bs-team {
line-height: 32px;
.team-member {
color: #555;
line-height: 32px;
}
color: #555;
.bs-team .team-member:hover {
}
color: #333;
.team-member:hover {
text-decoration: none;
color: #333;
}
text-decoration: none;
.bs-team .github-btn {
}
float: right;
.github-btn {
width: 180px;
float: right;
height: 20px;
width: 180px;
margin-top: 6px;
height: 20px;
}
margin-top: 6px;
.bs-team img {
}
float: left;
img {
width: 32px;
float: left;
margin-right: 10px;
width: 32px;
border-radius: 4px;
margin-right: 10px;
border-radius: 4px;
}
}
}
...
@@ -894,19 +861,18 @@ body {
...
@@ -894,19 +861,18 @@ body {
margin-bottom: -1rem;
margin-bottom: -1rem;
border: solid #f7f7f9;
border: solid #f7f7f9;
border-width: .2rem 0 0;
border-width: .2rem 0 0;
}
@media (min-width: 480px) {
@media (min-width: 480px) {
.bs-example {
border-width: .2rem;
border-width: .2rem;
}
}
}
// Undo width of container
// Undo width of container
.bs-example .container {
.container {
width: auto;
width: auto;
}
}
}
// Tweak content of examples for optimum awesome
// Tweak content of examples for optimum awesome
.bs-example > *:last-child,
.bs-example > *:last-child,
.bs-example > .table-responsive:last-child > .table {
.bs-example > .table-responsive:last-child > .table {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment