Skip to content

Commit

Permalink
modified
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Jul 13, 2017
1 parent b408e4f commit af28276
Show file tree
Hide file tree
Showing 22 changed files with 2,006 additions and 468 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ bower_components/

build/
dist/
gh-pages/
34 changes: 0 additions & 34 deletions examples/css/demo.css

This file was deleted.

109 changes: 109 additions & 0 deletions examples/css/doc.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
html,
body {
height: 100%;
}

.container {
max-width: 1170px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}

.header {
width: 100%;
height: 50%;
text-align: center;
background-color: #f5f5f5;
}

.header:before {
content: "";
display: inline-block;
width: 0;
height: 100%;
vertical-align: middle;
overflow: hidden;
}

.show {
display: inline-block;
vertical-align: middle;
/*border: 1px solid #eee;*/
}

.example {
/*border: 1px solid #eee;
border-radius: 5px;
padding: 10px;*/
}

.sidebar {
position: sticky;
position: -webkit-sticky;
top: 0;
padding-top: 32px;
}

.sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}

.sidebar ul > li {
margin-bottom: 10px;
font-size: 16px;
font-weight: bold;
}

.sidebar ul > li > a {
display: block;
margin-bottom: 5px;
color: #555;
}

.sidebar ul > li > ul {
padding-left: 10px;
}

.sidebar ul > li > ul li {
margin-bottom: 5px;
}

.sidebar ul > li > ul li a {
margin-bottom: 0;
font-weight: normal;
font-size: 12px;
}

.content > section {
margin-bottom: 72px;
padding: 1px 0;
}

.content > section > section {
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 1px solid #ff5b57;
}

.content section > h2,
.content section > h3 {
font-weight: bold;
color: #ff5b57;
}

.grid-box {
margin-bottom: 10px;
text-align: center;
background-color: #ddd;
line-height: 2;
}

.palette {
min-height: 100px;
margin-bottom: 15px;
padding: 10px;
color: #fff;
}
Loading

0 comments on commit af28276

Please sign in to comment.