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 76 77 78 79 80 81 82 83 84 85 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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
|
/* Page background */
body {
background-image: url("../images/pw_maze_white.png");
}
/* A better looking default horizontal rule */
.md-typeset hr {
border-bottom: .1rem solid rgba(0,0,0,.26);
}
/* Increase logo width because mkdocs material enforces 48 x 48
width: 48px;
*/
.md-logo img {
width: 48px ! Important;
height: auto;
}
/* Add vertical rhythm
* Based on example 5 of https://tympanus.net/codrops/2012/11/02/heading-set-styling-with-css/
.md-main {counter-reset: section-1, section-2, section-3, section-4;}
*/
.md-main h1 {
margin: 0.8em 0 0.5em 0;
color: #333;
font-weight: normal;
font-size: 36px;
line-height: 40px;
/*
counter-increment: section-1;
counter-reset: section-2 section-3 section-4;
*/
}
.md-main h2 {
margin: 0.8em 0 0.5em 0;
color: #333;
font-weight: normal;
font-size: 28px;
line-height: 40px;
border-bottom: 1px solid #fff;
box-shadow: 0 1px 0 rgba(0,0,0,0.1);
padding-bottom: 10px;
/*
counter-increment: section-2;
counter-reset: section-3 section-4;
*/
}
.md-main h3 {
margin: 0.8em 0 0.5em 0;
color: #333;
font-weight: normal;
font-size: 22px;
line-height: 40px;
/*
counter-increment: section-3;
counter-reset: section-4;
*/
}
.md-main h4 {
margin: 0.8em 0 0.5em 0;
color: #333;
font-weight: normal;
font-size: 16px;
line-height: 20px;
/* counter-increment: section-4; */
}
/*
a {
outline: none;
text-decoration: none;
padding: 2px 1px 0;
}
a:link {
color: blue;
}
a:visited {
color: purple;
}
a:focus, a:hover {
border-bottom: 1px solid;
}
a:active {
color: red;
}
*/
/* https://codemyui.com/expand-on-hover-link-style/
a.wikilink {
text-decoration: none;
margin: 0 2px;
color: #3f51b5 !important;
position: relative;
}
a.wikilink:before {
position: absolute;
margin: 0 auto;
top: 100%;
left: 0;
width: 100%;
height: 3px;
background-color: #E65100;
content: '';
opacity: .3;
-webkit-transform: scaleX(.9);
transition-property: opacity, -webkit-transform;
transition-duration: .3s;
}
a.wikilink:hover:before {
opacity: 1;
-webkit-transform: scaleX(1);
}
*/
a.codevar-wikilink,
a.abifile-wikilink {
font-family: "Inconsolata", "Consolas", "Menlo", Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
/*
text-decoration: underline !important;
color: #279fcd !important;
color: black !important;
color: #DA621E !important;
color: #EF6C00 ! important;
color: #FF6600 !important;
color: #E65100 !important;
*/
}
a.citation-wikilink {
font-style: italic;
}
/*
font-family: 'Ubuntu Mono', monospace;
*/
/* Add fa icon to external links a la wikipedia.
* See http://astronautweb.co/snippet/font-awesome/ */
a[href^="http://"]:after,
a[href^="https://"]:after {
content: "\f08e"; /* font-awesome fa-external-link */
/* content: url(http://upload.wikimedia.org/wikipedia/commons/6/64/Icon_External_Link.png); */
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
margin: 0 0 0 -3px;
font-size: 7px;
padding-bottom: 0.5em;
position: absolute;
display: inline-block;
padding-left: 3px;
/*--adjust as necessary--
padding-right: 0.5em;
top: 10px;
left: 0;
*/
}
/* Strip from links to own domain */
a[href*="abinit.org"]:after,
a[href="https://github.com/abinit/abinit/"]:after {
content:"" !important;
padding-left: 0;
}
/* Center figure and img elements */
figure {
text-align: center;
}
img {
display: block;
margin: auto;
}
/* Table style */
table {
background-color: #eee;
}
tr:hover {
background-color: #f5f5f5;
}
/* Change color background of code examples and admonitions */
.md-typeset .codehilite code,
.md-typeset .codehilite pre,
.md-typeset .highlight code,
.md-typeset .highlight pre {
background-color: #dfe2f1;
}
.md-typeset .admonition,
.md-typeset details {
background-color: #eee;
}
/* Change color background of `monospace` elements used in markdown pages */
.md-typeset .codehilite, .md-typeset .highlight {
background-color: rgba(144, 144, 144, 0.10);
}
/* This for bootstrap buttons with labels. See https://bootsnipp.com/snippets/featured/buttons-with-labels
.btn-label {
position: relative;
left: -12px;
display: inline-block;
padding: 6px 12px;
background: rgba(0,0,0,0.15);
border-radius: 3px 0 0 3px;
z-index: 0;
}
.btn-labeled {
padding-top: 0;
padding-bottom: 0;
}
*/
/* Decrease font-size e.g in <pre class="small-text"> elements */
.small-text {
font-size: 10px !important;
}
pre.small-text {
font-size: 10px !important;
}
/* This to solve the conflict between bootstrap and jquery-ui close button.
* https://stackoverflow.com/questions/17367736/jquery-ui-dialog-missing-close-icon
.ui-dialog-titlebar-close {}
* */
.ui-dialog-titlebar-close:after {
content: '';
width: 20px;
height: 20px;
display: inline-block;
background-image: url(../images/ui-icons_555555_256x240.png);
background-position: -96px -128px;
background-repeat: no-repeat;
}
/*
.ui-dialog { position: fixed; padding: .1em; width: 50px; overflow: hidden; }
*/
.ui-dialog-titlebar .PinDialog, .ui-dialog-titlebar .DialogPinned {
float: left;
height: 20px;
margin: 0 5px 0 -10px;
padding: 1px;
top: 50%;
width: 20px;
}
/* Set z-index to 0 to elements that otherwise would appear above the menu bar upon scrolling. */
.custom-search-form {
z-index: 0;
}
/* Setting height is also important, otherwise editor wont showup
http://tech.deepumohan.com/2013/09/javascript-ace-editor-positioning-bootstrap.html */
.editor {
height: 480px;
z-index: 0;
/*
height: 520px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
*/
}
/* CSS for https://bootsnipp.com/snippets/featured/inbox-by-gmail */
.fab {
cursor: pointer;
}
.fab-backdrop {
color: rgba(255, 255, 255, 0);
}
.fab-primary,
.fab-secondary {
transition: all 0.35s ease-in-out;
}
.fab.active .fab-primary {
opacity: 0;
transform: rotate(225deg);
}
.fab-secondary {
opacity: 0;
transform: rotate(-225deg);
}
.fab.active .fab-secondary {
opacity: 1;
transform: rotate(0);
margin-top: -2px;
}
#inbox .show-on-hover:hover > ul.dropdown-menu {
display: block;
}
#inbox .show-on-hover {
position: fixed;
bottom: 20px;
right: 20px;
}
#inbox .btn-io {
border-radius: 50%;
height: 60px;
width: 60px;
padding: 0 !important;
background: #3C80F6;
}
#inbox .dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px;
margin-bottom: -5px;
padding-bottom: 30px;
}
#inbox .dropdown-menu-right {
right: 0 !Important;
left: auto !Important;
}
#inbox .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 65px;
padding: 5px 0;
margin: 2px 0 0;
font-size: 14px;
text-align: center;
list-style: none;
background-color: rgba(255, 255, 255, 0) !Important;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: none;
border-radius: 0px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0) !Important;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0) !Important;
}
#inbox .fa-iox{
font-size: 22px;
}
#inbox .dropdown-menu > li > a {
display: block;
padding: 0;
padding-top: 4px;
margin-top: 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333 !important;
background: #fff;
white-space: nowrap;
width: 40px;
height: 40px;
border: solid 1px #ccc;
border-radius: 50px;
font-size: 21px;
box-shadow: 0px 3px 7px 0px rgba(203, 203, 203, 0.72);
}
#inbox .dropdown-menu > li:first-child>a {
background: black;
color: #fff !important;
}
#inbox .dropdown-menu > li:last-child>a {
background: #D3A516;
color: #fff !important;
}
#inbox .dropdown-menu > li:nth-child(6)>a {
background: magenta;
color: #fff !important;
}
#inbox .dropdown-menu > li:nth-child(5)>a {
background: #3C80F6;
color: #fff !important;
}
#inbox .dropdown-menu > li:nth-child(4)>a {
background: DARKTURQUOISE;
color: #fff !important;
}
#inbox .dropdown-menu > li:nth-child(3)>a {
background: DARKORANGE;
color: #fff !important;
}
#inbox .dropdown-menu > li:nth-child(2)>a {
background: #2CAC26;
color: #fff !important;
}
#inbox .fa-iosm{
margin-top: 7px;
}
/* This for the table of variables implemented by Jordan */
/* Style the tab */
div.TabsLetter {
overflow: hidden !important;
border: 1px solid #ccc !important;
background-color: #f1f1f1 !important;
}
/* Style the buttons inside the tab */
div.TabsLetter a {
background-color: inherit !important;
float: left !important;
border: none !important;
outline: none !important;
cursor: pointer !important;
padding: 14px 16px !important;
transition: 0.3s !important;
text-decoration: none !important; /* Remove default text underline */
color: #999 !important;
}
/* Change background color of buttons on hover */
div.TabsLetter a:hover {
background-color: #ddd !important;
color: #111 !important;
}
/* Create an active/current tablink class */
div.TabsLetter a.active {
background-color: #ccc !important;
color: #111 !important;
}
/* Style the tab content */
.TabContentLetter {
display: none;
padding: 6px 12px !important;
/* border: 1px solid #ccc; */
border-top: none !important;
}
ul#Letters, ul.TabContentLetter {
list-style: none !important;
overflow: hidden !important;
}
ul#Letters {
padding: 0px !important;
margin: 0px !important;
border: 1px solid #ccc !important;
border-top: none !important;
}
.TabContentLetter li {
/* display: inline; */
float: left !important;
}
a.small-grey-link {
text-decoration: none; /* Remove default text underline */
font-size: 16px;
color: #666 !important;
/* display: block; Make it into a block element to fill the whole list */
}
a.small-grey-link:hover {
color: #111; /* Add a hover effect to all links, except for headers */
background-color: #ccc;
}
li.HeaderLetter {
width: 100%;
border-bottom: 1px solid #ccc;
}
/* This for introjs based on introjs-modern.css */
.introjs-helperLayer {
background-color: rgba(255, 255, 255, 0.3);
}
.introjs-tooltip {
font-size: 16px;
}
/*
.introjs-tooltip {
background-color: rgba(000, 0, 0, 0.5);
color: #fff;
}
.introjs-button,
.introjs-button:hover, .introjs-button:focus, .introjs-button:active,
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
outline: none;
background-image: none;
background-color: transparent;
color: #fff;
border: 1px solid transparent;
border-radius: 50px;
box-shadow: none;
border-shadow: none;
text-shadow: none;
}
.introjs-button:hover, .introjs-button:focus, .introjs-button:active {
border: 1px solid #fff
}
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
color: #ccc;
border: 1px solid transparent;
}
.introjs-arrow {
border: 10px solid #fff;
}
.introjs-arrow.top, .introjs-arrow.top-middle, .introjs-arrow.top-right {
border-color: transparent transparent rgba(000, 0, 0, 0.5);
top: -20px;
left: 20px;
}
.introjs-arrow.bottom, .introjs-arrow.bottom-middle, .introjs-arrow.bottom-right {
border-color: rgba(000, 0, 0, 0.5) transparent transparent;
bottom: -20px;
left: 20px;
}
.introjs-arrow.left, .introjs-arrow.right {
top: 20px;
}
.introjs-arrow.left-bottom, .introjs-arrow.right-bottom {
bottom: 20px;
}
.introjs-arrow.left, .introjs-arrow.left-bottom {
left: -20px;
border-color: rgba(000, 0, 0, 0.5) transparent transparent transparent;
}
.introjs-arrow.right, .introjs-arrow.right-bottom {
right: -20px;
border-color: transparent transparent transparent rgba(000, 0, 0, 0.5);
}
*/
/* glow effect */
.glow{
display: inline-block;
animation: glow 0.8s 5;
}
@keyframes glow{
50% {
color: red;
transform: scale(1.2);
}
}
|