|
@@ -1771,6 +1771,26 @@ footer {
|
|
|
white-space: nowrap; }
|
|
|
footer nav.block-menu ul li:first-of-type {
|
|
|
margin-left: 1em; }
|
|
|
+ footer nav.block-menu ul li a:before {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 7px;
|
|
|
+ height: 7px;
|
|
|
+ border: 1px solid black;
|
|
|
+ margin-right: 0.5em; }
|
|
|
+ footer nav.block-menu ul li a:hover:before, footer nav.block-menu ul li a.is-active:before {
|
|
|
+ background-color: black; }
|
|
|
+ footer nav.block-menu ul li a.ajax-loading:before {
|
|
|
+ -webkit-animation: rotation 2s infinite linear;
|
|
|
+ animation: rotation 2s infinite linear; }
|
|
|
+
|
|
|
+@keyframes rotation {
|
|
|
+ from {
|
|
|
+ -webkit-transform: rotate(0deg);
|
|
|
+ transform: rotate(0deg); }
|
|
|
+ to {
|
|
|
+ -webkit-transform: rotate(359deg);
|
|
|
+ transform: rotate(359deg); } }
|
|
|
footer .block-language {
|
|
|
display: inline-block;
|
|
|
position: relative; }
|