aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html5
-rw-r--r--style.css16
2 files changed, 17 insertions, 4 deletions
diff --git a/index.html b/index.html
index ce00fae..b59b0f7 100644
--- a/index.html
+++ b/index.html
@@ -11,12 +11,13 @@
<body>
<img class="logo" src="/tako.jpg" alt="DJ TAKO">
<div class="links">
- <a href="http://soundcloud.com/takothedj">
+ <a class="soundcloud" href="http://soundcloud.com/takothedj">
<img src="soundcloud-brands.svg">
</a>
- <a href="http://instagram.com/takothedj">
+ <a class="instagram" href="http://instagram.com/takothedj">
<img src="instagram-brands.svg">
</a>
</div>
</body>
</html>
+
diff --git a/style.css b/style.css
index fb82ad2..7b986bb 100644
--- a/style.css
+++ b/style.css
@@ -23,10 +23,22 @@ body {
flex-flow: row nowrap;
justify-content: center;
align-items: center;
+
+}
+
+.links a {
+ display: flex;
}
.links img {
- width: 40px;
- height: auto;
+ height: 100%;
margin: 0 20px;
}
+
+.instagram img {
+ width: 40px;
+}
+
+.soundcloud img {
+ width: 53px;
+}