2020-06-02 22:52:28 +02:00
|
|
|
.rightinfo {
|
2020-06-01 19:09:32 +02:00
|
|
|
float: left;
|
|
|
|
width: 10%;
|
2020-06-02 22:52:28 +02:00
|
|
|
}
|
2020-06-12 19:48:09 +02:00
|
|
|
|
2020-06-17 19:51:02 +02:00
|
|
|
.searchform {
|
2020-06-12 19:48:09 +02:00
|
|
|
float: right;
|
2020-08-05 17:55:51 +00:00
|
|
|
margin-top: 25px;
|
2020-06-12 19:48:09 +02:00
|
|
|
}
|
2021-06-13 22:29:50 +02:00
|
|
|
|
2021-06-22 22:01:35 +02:00
|
|
|
.sortbyLabel {
|
|
|
|
color: grey;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
2021-06-13 22:29:50 +02:00
|
|
|
|
|
|
|
/* Style The Dropdown Button */
|
|
|
|
.dropbtn {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The container <div> - needed to position the dropdown content */
|
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dropdown Content (Hidden by Default) */
|
|
|
|
.dropdownContent {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
min-width: 160px;
|
|
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Links inside the dropdown */
|
|
|
|
.dropdownContent span {
|
|
|
|
color: black;
|
|
|
|
padding: 12px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change color of dropdown links on hover */
|
|
|
|
.dropdownContent span:hover {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Show the dropdown menu on hover */
|
|
|
|
.dropdown:hover .dropdownContent {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the background color of the dropdown button when the dropdown content is shown */
|
|
|
|
.dropdown:hover .dropbtn {
|
|
|
|
background-color: #3574fe;
|
|
|
|
}
|