diff options
| author | Jan Tuomi <jan.tuomi@eficode.com> | 2018-07-30 11:39:29 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@eficode.com> | 2018-07-30 11:41:24 +0300 |
| commit | e27ffc516c922f0ab0e05590e8169e90c3f1fb1f (patch) | |
| tree | 42f5d2a5c3d2d85ef408baf9fe1913e17265c5a9 | |
| parent | 6f046828e49087f92791d0b8c89c99934bafdf8e (diff) | |
Fix styles
| -rw-r--r-- | index.html | 5 | ||||
| -rw-r--r-- | style.css | 16 |
2 files changed, 17 insertions, 4 deletions
@@ -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> + @@ -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; +} |
