Skip to content

Instantly share code, notes, and snippets.

@juliettech13
Last active May 27, 2020 03:31
Show Gist options
  • Save juliettech13/387dc3a241d8624fac135e5d60a7f4ac to your computer and use it in GitHub Desktop.
Save juliettech13/387dc3a241d8624fac135e5d60a7f4ac to your computer and use it in GitHub Desktop.
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