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
|
html {
width: 100%;
height: 100%;
background: #FAFAFA;
}
body {
height: 100%;
width: 100%;
margin: 0;
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
padding: 0px 10px;
padding-top: 3rem;
padding-bottom: 1rem;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #EEE;
}
.navbar li {
float: left;
font-size: 17px;
transition: .3s background-color;
}
.navbar li.active {
background-color: rgba(234, 170, 109, 0.7);
}
.navbar li a {
display: block;
color: black;
padding: 11px 16px;
text-decoration: none;
}
.navbar li:hover {
background-color: #eaaa6d;
}
#dask-logo img {
height: 28px;
padding: 5px 15px;
}
#dask-logo a {
padding: 0px;
}
#navbar-toggle-icon {
float: right;
}
#navbar-toggle-icon a {
display: none;
}
#navbar-toggle-icon img {
height: 22px;
}
@media screen and (max-width: 800px) {
.navbar li:not(#dask-logo):not(#navbar-toggle-icon) a {
display: none;
}
#navbar-toggle-icon a {
display: block;
}
}
@media screen and (max-width: 800px) {
.navbar.responsive li:not(#navbar-toggle-icon) {
float: none;
}
.navbar.responsive li:not(#dask-logo):not(#navbar-toggle-icon) a {
display: block;
text-align: left;
}
.navbar.responsive #navbar-toggle-icon a {
position: absolute;
right: 0;
top: 0;
}
}
/* The bokeh-specific CSS below can be removed once `bokeh=3` is the
minimum supported version */
.bk-root .bk-toolbar-box .bk-toolbar-right {
top: 4px;
right: 4px;
}
.bk-root .bk-data-table {
z-index: 0;
}
.content {
width: 100%;
height: 100%;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: fixed;
top: 40px;
background-color: #EEE;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 2;
max-height: 90%;
overflow-y: scroll;
}
.dropdown-content ul li {
float: none;
}
.dropdown:hover .dropdown-content {
display: block;
}
|