echartsHome.css 5.5 KB
Newer Older
K
kener 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
body {
    padding-top: 60px;
    padding-bottom: 40px;
    color: #5a5a5a;
    font-family: "微软雅黑";
}

.face {
    background-color:#181818;
}

#forkme_banner {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 10px 50px 10px 10px;
    color: #fff;
    background: url('../img/blacktocat.png') #0090ff no-repeat 95% 50%;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* Carousel base class */
.carousel {
  margin: -20px 0 30px 0;
}

.carousel .container {
  position: relative;
  z-index: 9;
}

.carousel-control {
  height: 80px;
  margin-top: 0;
  font-size: 120px;
  text-shadow: 0 1px 1px rgba(0,0,0,.4);
  background-color: transparent;
  border: 0;
  z-index: 10;
}

.carousel .item {
  height: 300px;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 300px;
}

.carousel-caption {
  background-color: transparent;
  position: static;
  max-width: 540px;
  padding: 0;
  margin-top: 40px;
}
.carousel-caption h1,
.carousel-caption .lead {
  margin: 0;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn {
  margin-top: 10px;
}

K
kener 已提交
76 77 78 79 80 81 82 83 84 85
.carousel-caption a.link {
  color: #666;
  text-decoration: underline;
}

.carousel-caption a.link:hover,
.carousel-caption a.link:focus {
  color: #0088cc;
  text-decoration: underline;
}
K
kener 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
/* Featurettes
------------------------- */
.featurette-divider {
  margin: 30px 0; /* Space out the Bootstrap <hr> more */
}
.featurette {
  overflow: hidden; /* Vertically center images part 2: clear their floats. */
}

.navbar a.brand {
    background:url('../ico/favicon.png') no-repeat 0 10px;
    margin-left:0
}
.sidebar-nav {
    padding: 9px 0;
    margin-bottom: 0;
}

/* Give some space on the sides of the floated elements so text doesn't run right into it. */
.featurette .pull-left {
  margin:10px 40px 0 0;
}
.featurette .pull-right {
  margin:10px 0 0 40px;
}

/* Thin out the marketing headings */
.featurette-heading {
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  margin-bottom:30px;
}

.CodeMirror pre{color: #f8f8f2;}

.span4.ani {
    transition: width 1s;
    -moz-transition: width 1s; /* Firefox 4 */
    -webkit-transition: width 1s; /* Safari and Chrome */
    -o-transition: width 1s; /* Opera */
}
.span8.ani {
    transition: width 1s;
    -moz-transition: width 1s; /* Firefox 4 */
    -webkit-transition: width 1s; /* Safari and Chrome */
    -o-transition: width 1s; /* Opera */
}
.main {
    height: 400px;
K
kener 已提交
136 137 138 139
    /*
    height : 400px !important;
    width : 800px !important;
    */
K
kener 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
    overflow: hidden;
    padding : 10px;
    margin-bottom: 10px;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
       -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

a.accordion-toggle:hover {
    text-decoration:none;
    font-weight:bolder;
}
ul.nav-list {
    overflow-y: auto;
}
.nav-list i.icon-plus, .nav-list i.icon-minus {
    margin: 6px 0 0 -15px;
    float: left;
    cursor : pointer;
    opacity: .3;
K
kener 已提交
164
    filter:alpha(opacity=30);
K
kener 已提交
165 166 167 168 169 170
}
i.icon-chevron-right{
    float: right;
    margin-top: 2px;
    margin-right: -6px;
    opacity: .25;
K
kener 已提交
171
    filter:alpha(opacity=25);
K
kener 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
}
.page-header {
    padding-top:35px;
    margin:0;
    border-width:0;
}
.page-header h1 {
    background-color:#eee;
    padding:15px;
    text-align:right;
}
div.section {
    padding-top:30px;
}
tr.head {
    background-color:#f5f5f5
}

/*doc*/
.accordion-inner {
    padding: 0 0 0 10px;
}
#toc,
#config {
    padding: 9px 0;
    overflow-y : auto;
}
.tree ul,
.tree li {
    list-style: none;
    font-size : 14px;
    line-height : 20px;
}
.tree ul {
    margin: 0;
    padding: 0 0 0 2em;
}

.tree {
    white-space: nowrap;
}
.tree strong {
    color: purple;
    font-weight: normal;
}
.tree li {
    position: relative;
}
.tree strong:hover, #content .value:hover, #content .summary:hover {
    background-color: silver;
    -webkit-transition: all .5s ease-in;
}
.tree .operator {
    position: absolute;
    left: -1em;
    top: 0;
    display: none;
    cursor: pointer;
}
.tree ul .operator {
    display: block;
}
.tree ul .value,
.tree ul .group,
.tree ul .summary {
    margin-left: .5em;
}
.tree .group {
    display: inline;
}
.tree .summary {
    display: none;
    color: black;
    font-weight: bold;
}
.tree .tree-close .group {
    display: none;
}
.tree .tree-close .summary {
    display: inline;
}
.tree .string {
    color: maroon;
}
.tree .number {
    color: blue;
}
.tree .boolean {
    color: black;
}
#doc h3 a,#doc h4 a,#doc h5 a{
    display:inline-block;
    padding-top:80px;
}
table.full {width:100%;}
.ADoc_table { border-collapse: collapse; margin-bottom:15px; }

.ADoc_table th, .ADoc_table td {
    border:1px solid rgb(23,53,81);
    padding: 3px;
    color:#222;
}

.ADoc_table th {
    border-bottom:2px solid rgb(23,53,81);
    background:rgb(37,78,117);
    color:#fff;
}
K
kener 已提交
280 281 282 283 284 285 286 287 288
.bgRed {
    background:rgb(255,230,230);
}
.bgGreen {
    background:rgb(230,255,230);
}
.bgBlue {
    background:rgb(210,230,255);
}
K
kener 已提交
289 290 291
#icon-resize {
    float:right;
    opacity:.3;
K
kener 已提交
292
    filter:alpha(opacity=30);
K
kener 已提交
293 294 295
}
a#icon-resize:hover {
    opacity:.6;
K
kener 已提交
296
    filter:alpha(opacity=60);
K
kener 已提交
297
}
K
kener 已提交
298 299 300 301 302 303 304 305 306 307 308

.prettyprint {
  margin-top: 8px;
}
.prettyprint xmp{   
  margin: 0px;
  padding: 10px;
}
.prettyprint .pln {
  line-height: 0px;
}