2020-05-20 20:02:30 +03:00
|
|
|
body {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2020-01-23 09:19:17 +03:00
|
|
|
.logo {
|
|
|
|
width: 80%;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2020-01-22 10:15:29 +03:00
|
|
|
.search-container {
|
|
|
|
width: 80%;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
max-width: 600px;
|
2020-08-15 22:02:17 +03:00
|
|
|
z-index: 15;
|
2020-01-22 10:15:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-items {
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-bar {
|
|
|
|
width: 100%;
|
2020-04-05 04:30:53 +03:00
|
|
|
border: 3px solid #685e79;
|
2020-01-22 10:15:29 +03:00
|
|
|
padding: 5px;
|
|
|
|
height: 40px;
|
|
|
|
outline: none;
|
|
|
|
font-size: 24px;
|
2020-04-05 04:30:53 +03:00
|
|
|
color: #685e79;
|
2020-01-22 10:15:29 +03:00
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
max-width: 600px;
|
2020-07-26 20:53:59 +03:00
|
|
|
background: rgba(0, 0, 0, 0);
|
2020-01-22 10:15:29 +03:00
|
|
|
}
|
|
|
|
|
2020-07-26 20:53:59 +03:00
|
|
|
#search-bar:focus {
|
2020-04-05 04:30:53 +03:00
|
|
|
color: #685e79;
|
2020-01-22 10:15:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#search-submit {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
2020-04-05 04:30:53 +03:00
|
|
|
border: 1px solid #685e79;
|
2020-09-14 22:29:58 +03:00
|
|
|
background: #685e79 !important;
|
2020-01-22 10:15:29 +03:00
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 20px;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: auto;
|
|
|
|
border-radius: 0 0 10px 10px;
|
|
|
|
max-width: 600px;
|
2020-04-29 03:19:34 +03:00
|
|
|
-webkit-appearance: none;
|
2020-01-22 10:15:29 +03:00
|
|
|
}
|
|
|
|
|
2020-04-08 21:47:21 +03:00
|
|
|
.config-div {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2020-04-16 19:01:02 +03:00
|
|
|
button::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:47:21 +03:00
|
|
|
.collapsible {
|
2020-04-16 19:01:02 +03:00
|
|
|
outline: 0;
|
2020-07-26 20:53:59 +03:00
|
|
|
background-color: rgba(0, 0, 0, 0);
|
2020-04-08 21:47:21 +03:00
|
|
|
color: #685e79;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 18px;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
text-align: left;
|
|
|
|
outline: none;
|
|
|
|
font-size: 15px;
|
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
background-color: #685e79;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsible:after {
|
|
|
|
content: '\002B';
|
|
|
|
color: #685e79;
|
|
|
|
font-weight: bold;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active:after {
|
|
|
|
content: "\2212";
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 0 18px;
|
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.2s ease-out;
|
|
|
|
background-color: #685e79;
|
|
|
|
color: white;
|
|
|
|
border-radius: 0 0 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.open {
|
|
|
|
padding-bottom: 20px;
|
2020-04-16 19:01:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.ua-span {
|
|
|
|
color: white;
|
|
|
|
-webkit-box-decoration-break: clone;
|
|
|
|
box-decoration-break: clone;
|
2020-04-29 03:19:34 +03:00
|
|
|
}
|
2020-05-10 22:27:02 +03:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-05-20 20:02:30 +03:00
|
|
|
|
|
|
|
footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0%;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2020-08-15 22:02:17 +03:00
|
|
|
z-index: 10;
|
2020-05-20 20:02:30 +03:00
|
|
|
}
|
2020-07-26 20:53:59 +03:00
|
|
|
|
|
|
|
.info-text {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 12px;
|
2020-08-15 22:02:17 +03:00
|
|
|
}
|