The graat customizing ...

This commit is contained in:
Djordje Atlialp 2019-01-27 23:02:55 +01:00
parent bb6fdc2493
commit 805c789ee9
No known key found for this signature in database
GPG key ID: 02849100E934D92C
56 changed files with 8724 additions and 8482 deletions

34
source/scss/_logo.scss Normal file
View file

@ -0,0 +1,34 @@
.logo {
display: flex;
align-items: center;
text-decoration: none;
font-weight: bold;
img {
height: 44px;
}
&__mark {
margin-right: 5px;
}
&__text {
font-size: 1.125rem;
}
&__cursor {
display: inline-block;
width: 10px;
height: 1rem;
background: #fe5186;
margin-left: 5px;
border-radius: 1px;
animation: cursor 1s infinite;
}
}
@keyframes cursor {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}