Last active
May 29, 2017 07:01
-
-
Save andimariadi/f76f3b69aad8c95b7d3e602f1e2c1283 to your computer and use it in GitHub Desktop.
Hasil akhir style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; /*Merubah jenis font yang ada didalam body */ | |
font-size:14px; /*Merubah ukuran font yang ada didalam body */ | |
line-height:1.42857143; /*Merubah jarak enter text yang ada didalam body */ | |
color:#333; /*Merubah warna yang ada didalam body */ | |
background-color:#fff; /*Merubah background body */ | |
margin: 0 auto; /*Menentukan jarak antar body dengan sisi atas dan bawah menjadi 0px dan sisi kiri dan kanan menjadi disesuaikan*/ | |
} | |
/*merubah tag <a href=”#”></a>*/ | |
a { | |
color: #2980b9; | |
text-decoration: none; | |
} | |
/*hover adalah script yang berfungsi jika si cursor / pointer menyentuk tag yang diberi hover tersebut*/ | |
/*merubah tag <a href=”#”></a> jika corsur ke link tersebut*/ | |
a:hover { | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment