2018-07-20 19:14:22 +02:00
|
|
|
.logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
2018-08-30 23:28:52 +02:00
|
|
|
font-weight: bold;
|
2018-07-20 19:14:22 +02:00
|
|
|
|
2018-07-25 00:28:34 +02:00
|
|
|
img {
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:14:22 +02:00
|
|
|
&__mark {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2019-01-06 11:23:25 +01:00
|
|
|
&__text {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:14:22 +02:00
|
|
|
&__cursor {
|
|
|
|
display: inline-block;
|
2019-01-06 11:23:25 +01:00
|
|
|
width: 10px;
|
2018-07-20 19:14:22 +02:00
|
|
|
height: 1rem;
|
|
|
|
background: #fe5186;
|
|
|
|
margin-left: 5px;
|
2019-01-06 11:23:25 +01:00
|
|
|
border-radius: 1px;
|
2018-07-20 19:14:22 +02:00
|
|
|
animation: cursor 1s infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes cursor {
|
|
|
|
0% { opacity: 0; }
|
|
|
|
50% { opacity: 1; }
|
|
|
|
100% { opacity: 0; }
|
2018-08-30 23:28:52 +02:00
|
|
|
}
|