From dd85a5e4e914c48b38b45e168e2007c177067827 Mon Sep 17 00:00:00 2001 From: bmen Date: Sat, 10 Oct 2020 09:47:31 +0200 Subject: [PATCH] =?UTF-8?q?Eigene=20CSS=20Datei=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/style.scss | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 assets/css/style.scss diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..687c7ee --- /dev/null +++ b/assets/css/style.scss @@ -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; +} \ No newline at end of file