You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
special-issue-11-wiki2html/static/orgs.css

115 lines
1.6 KiB
CSS

4 years ago
#top {
padding-top: 20px;
padding-left: 50px;
}
4 years ago
body {
4 years ago
background-color: #F4EBE8;
font-family: Roboto Mono;
4 years ago
font-size:14px;
4 years ago
}
4 years ago
/* Page title */
4 years ago
h1 {
position: fixed;
right:0%;
4 years ago
top:5%;
4 years ago
text-align: right;
background-color: #0BEFEB;
4 years ago
padding: 3px 35px 3px 10px;
4 years ago
z-index: 10;
color: black;
font-size: 28px;
4 years ago
opacity: 0.7;
color: #371F10;
4 years ago
}
4 years ago
4 years ago
/* Organizations list */
4 years ago
.collapsible{
padding-left: 70px;
4 years ago
line-height: 1;
4 years ago
color: #371F10;
4 years ago
}
.active, .collapsible:hover {
4 years ago
color: blue;
4 years ago
cursor: pointer;
}
.active, .collapsible:after {
4 years ago
padding-top: 10px;
padding-left: 85px;
4 years ago
color: #371F10;
font-weight: bold;
4 years ago
}
4 years ago
/* Droped-down publication links */
4 years ago
.content {
max-height: 0;
4 years ago
overflow: hidden;
4 years ago
transition: max-height 0.2s ease-out;
4 years ago
padding-left: 50px;
4 years ago
background-color: #371F10;
4 years ago
position: relative;
4 years ago
line-height: 30px;
4 years ago
margin-left: 85px;
4 years ago
color: white;
font-size: 14px;
4 years ago
}
4 years ago
.content a {
color:white;
text-decoration: none;
4 years ago
}
4 years ago
.content a:hover {
color: blue;
cursor: pointer;
4 years ago
}
4 years ago
/* Scroll column */
.scrollcolumn {
4 years ago
position: fixed;
4 years ago
display: inline;
top:35%;
right:0%;
width: 60px;
outline: none;
4 years ago
z-index: 10;
4 years ago
text-align: center;
4 years ago
}
4 years ago
/* Scroll buttons */
.scrl {
background-color: white;
cursor: pointer;
border:none;
font-size: 15px;
margin-top: 10px;
height: 60px;
width: 60px;
4 years ago
}
4 years ago
.scrl:hover {
background-color: #0BEFEB;
4 years ago
}
4 years ago
/* Scroll button title */
.scbt {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
font-size: 15px;
right: 50px;
4 years ago
z-index: 10;
4 years ago
position: absolute;
4 years ago
}
4 years ago
.scrl:hover > .scbt {
visibility: visible;
4 years ago
}