Eigene CSS Datei hinzugefügt

This commit is contained in:
bmen 2020-10-10 09:47:31 +02:00
parent 8135dd6d45
commit dd85a5e4e9
1 changed files with 39 additions and 0 deletions

39
assets/css/style.scss Normal file
View File

@ -0,0 +1,39 @@
---
---
/* Add your custom style here */
@import "portfolYOU";
.home-navi {
max-width:610px;
margin:0 auto;
animation-delay: 2s;
text-align: center;
}
.project.card,
.post.card {
border-radius: 5px;
}
.project-meta {
font-size:0.8em;
}
.project-meta label {
text-decoration: underline;
}
.project-meta .description label {
margin-bottom:0;
}
.project-meta .btn {
margin-top:20px;
}
.project-meta .btn i {
display: none;
opacity: 0;
transition: visibility 0s, opacity 0.6s linear;
}
.project-meta .btn:hover i {
display: inline;
opacity:1;
}
.project.card .card-img-top {
border-radius: 5px 5px 0 0;
}