start copy from cimac web
This commit is contained in:
Vendored
+6584
File diff suppressed because it is too large
Load Diff
Vendored
+5
File diff suppressed because one or more lines are too long
@@ -0,0 +1,92 @@
|
||||
/* Pretty printing styles. Used with prettify.js.
|
||||
*
|
||||
* This version is slight modified based on the original version.
|
||||
*
|
||||
* Name: Stanley Ng
|
||||
* Email: stanleyhlng@googlegroups.com
|
||||
*
|
||||
* Reference:
|
||||
* http://code.google.com/p/google-code-prettify/source/browse/trunk/src/prettify.css
|
||||
*/
|
||||
.pln {
|
||||
color: #48484C; }
|
||||
|
||||
.str {
|
||||
color: #DD1144; }
|
||||
|
||||
.kwd {
|
||||
color: #1E347B; }
|
||||
|
||||
.com {
|
||||
color: #93A1A1; }
|
||||
|
||||
.typ {
|
||||
color: teal; }
|
||||
|
||||
.lit {
|
||||
color: #195F91; }
|
||||
|
||||
.pun {
|
||||
color: #93A1A1; }
|
||||
|
||||
.opn {
|
||||
color: #93A1A1; }
|
||||
|
||||
.clo {
|
||||
color: #93A1A1; }
|
||||
|
||||
.tag {
|
||||
color: #008; }
|
||||
|
||||
.atn {
|
||||
color: teal; }
|
||||
|
||||
.atv {
|
||||
color: #DD1144; }
|
||||
|
||||
.dec {
|
||||
color: teal; }
|
||||
|
||||
.var {
|
||||
color: teal; }
|
||||
|
||||
.fun {
|
||||
color: #DC322F; }
|
||||
|
||||
/* Put a border around prettyprinted code snippets. */
|
||||
pre.prettyprint {
|
||||
background-color: #F7F7F9;
|
||||
padding: 10px;
|
||||
border: 1px solid #E1E1E8; }
|
||||
|
||||
pre.prettyprint.linenums {
|
||||
box-shadow: 40px 0 0 #FBFBFC inset, 41px 0 0 #ECECF0 inset; }
|
||||
|
||||
/* Specify class=linenums on a pre to get line numbering */
|
||||
ol.linenums {
|
||||
color: #1E347B;
|
||||
margin: 0 0 0 40px; }
|
||||
|
||||
ol.linenums li {
|
||||
color: #BEBEC5;
|
||||
line-height: 18px;
|
||||
padding-left: 12px;
|
||||
text-shadow: 0 1px 0 #FFFFFF; }
|
||||
|
||||
li.L0,
|
||||
li.L1,
|
||||
li.L2,
|
||||
li.L3,
|
||||
li.L5,
|
||||
li.L6,
|
||||
li.L7,
|
||||
li.L8 {
|
||||
list-style-type: normal; }
|
||||
|
||||
/* Alternate shading for lines */
|
||||
li.L1,
|
||||
li.L3,
|
||||
li.L5,
|
||||
li.L7,
|
||||
li.L9 {
|
||||
background: #eee; }
|
||||
@@ -0,0 +1,215 @@
|
||||
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-weight: 400;
|
||||
color: #666;
|
||||
background-color: #edf0f0;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
a {
|
||||
color: inherit;
|
||||
}
|
||||
a:hover,
|
||||
a:focus {
|
||||
color: #317eeb;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.mb-0{
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.mb-12{
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.p-t-20 {
|
||||
padding-top: 2em;
|
||||
}
|
||||
|
||||
.p-t-50 {
|
||||
padding-top: 5em;
|
||||
}
|
||||
.list-none {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.navbar-default {
|
||||
border: none;
|
||||
margin-bottom: 0px;
|
||||
background-color: #fff;
|
||||
/*box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);*/
|
||||
border-radius: 0px;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
height: auto;
|
||||
font-weight: 700;
|
||||
font-size: 20px;
|
||||
color: #333 !important;
|
||||
display: block;
|
||||
float: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background-color: #0c1021;
|
||||
}
|
||||
|
||||
.alert-success {
|
||||
color: #01ba9a;
|
||||
border: 0;
|
||||
background-color: rgba(1,186,154,.15);
|
||||
}
|
||||
|
||||
.copy {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
/* Toggle Styles */
|
||||
|
||||
|
||||
/* this css is taken from Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com) */
|
||||
#wrapper {
|
||||
padding-left: 0;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
#sidebar-wrapper {
|
||||
background: #ffffff;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
||||
z-index: 1000;
|
||||
position: fixed;
|
||||
left: 250px;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
#wrapper.toggled #sidebar-wrapper {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
#page-content-wrapper {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
padding: 15px;
|
||||
top: 70px;
|
||||
}
|
||||
|
||||
#wrapper.toggled #page-content-wrapper {
|
||||
position: absolute;
|
||||
margin-right: -250px;
|
||||
}
|
||||
|
||||
/* Sidebar Styles */
|
||||
|
||||
.sidebar-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 250px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
top: 2em;
|
||||
}
|
||||
|
||||
.sidebar-nav li {
|
||||
text-indent: 20px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.sidebar-nav li a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.sidebar-nav li a:hover {
|
||||
text-decoration: none;
|
||||
color: #111;
|
||||
background: rgba(0,0,0,0.05);
|
||||
}
|
||||
|
||||
.sidebar-nav li a:active,
|
||||
.sidebar-nav li a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.sidebar-nav > .sidebar-brand {
|
||||
height: 65px;
|
||||
font-size: 18px;
|
||||
line-height: 60px;
|
||||
}
|
||||
|
||||
.sidebar-nav > .sidebar-brand a {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.sidebar-nav > .sidebar-brand a:hover {
|
||||
color: #fff;
|
||||
background: none;
|
||||
}
|
||||
|
||||
@media(min-width:768px) {
|
||||
|
||||
#wrapper.toggled {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#sidebar-wrapper {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
#wrapper.toggled #sidebar-wrapper {
|
||||
width: 0;
|
||||
}
|
||||
|
||||
#page-content-wrapper {
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#wrapper.toggled #page-content-wrapper {
|
||||
position: relative;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* right bar */
|
||||
.right-bar {
|
||||
background-color: #fff;
|
||||
padding: 10px 30px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
padding-bottom: 9px;
|
||||
margin: 40px 0 20px;
|
||||
border-bottom: 1px solid #eee;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#plugin-list li,#plugin-list li a {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
b, strong {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
float: none;
|
||||
}
|
||||
Reference in New Issue
Block a user