Last active
May 27, 2020 03:31
-
-
Save juliettech13/387dc3a241d8624fac135e5d60a7f4ac to your computer and use it in GitHub Desktop.
This file contains hidden or 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: 'Roboto Mono'; | |
background-color: #f4f4fb; | |
font-weight: 300; | |
color: #1c2366; /* this will be the color of the text, not the color of the background. */ | |
} | |
h1{ | |
font-family: 'Changa'; | |
color: #D0EA00; | |
text-shadow: 0px 4px 6px black; /* This shadow is a bit.. well, disgusting really. Play a bit with it, let's see how wecan fix it ๐ -> Google 'css text-shadow' so you see what else we can do.. (MDN is usually a safe bet with documentation). */ | |
font-size: 35px; | |
margin-top: 20px; /* remove it and see what happens ๐.. */ | |
font-weight: bold; | |
letter-spacing: 3px | |
} | |
a{ | |
color: #1c2366; | |
text-decoration: none /* eliminates the browser's default underline for links */ | |
} | |
h4{ | |
font-size: large; | |
font-weight: 300; | |
color: #dbeef6; | |
} | |
ul{ | |
padding-left: 0; /* <ul> always brings `padding-left: 10px` as default */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment