hugo-theme-hello-friend/assets/css/logo.css

40 lines
584 B
CSS
Raw Normal View History

2018-07-20 19:14:22 +02:00
.logo {
display: flex;
align-items: center;
2019-01-29 19:24:36 +01:00
flex: 0 0 auto;
2018-07-20 19:14:22 +02:00
text-decoration: none;
font-weight: bold;
2018-07-20 19:14:22 +02:00
img {
height: 44px;
}
2018-07-20 19:14:22 +02:00
&__mark {
2019-02-06 12:52:43 +01:00
display: inline-flex;
align-items: center;
2018-07-20 19:14:22 +02:00
margin-right: 5px;
2019-02-06 12:52:43 +01:00
@mixin greater-icon 8px;
2018-07-20 19:14:22 +02:00
}
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; }
}