Skip to content

Instantly share code, notes, and snippets.

@michaels123
Created June 21, 2019 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaels123/0b4cf2fc1e391e3817f014c92ee6e920 to your computer and use it in GitHub Desktop.
Save michaels123/0b4cf2fc1e391e3817f014c92ee6e920 to your computer and use it in GitHub Desktop.
* {
box-sizing: border-box;
padding: 0;
margin: 0;
word-wrap: break-word;
}
img {
max-width: 100%;
height: auto;
}
body {
background-color: honeydew;
font-family: Arial, Helvetica, sans-serif;
}
header {
width: 100%;
background-color: orchid;
border-radius: 25px;
margin-top: 20px;
margin-bottom: 20px;
padding: 10px;
overflow: auto;
}
header img {
float: left;
margin: 10px;
border-radius: 50%;
}
header h1 {
font-size: 2.2em;
margin: 15px 15px 15px 120px;
}
header h2 {
font-size: 1.3em;
margin-left: 50%;
}
nav {
padding: 10px;
}
article {
padding: 10px;
font-family: "Snell Roundhand", "Comic Sans MS", cursive;
color: honeydew;
}
aside {
padding: 10px;
border-radius: 25px;
background-color: orchid;
}
#hauptbereich {
width: 100%;
background-image: linear-gradient(#006060, darkcyan);
margin-top: 20px;
margin-bottom: 20px;
padding: 15px;
border-radius: 25px;
}
nav li {
background-color: orchid;
border-radius: 15px;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
font-size: 1.3em;
list-style: none;
}
nav a {
color: black;
text-decoration: none;
}
nav a:hover {
color: darkcyan;
}
h1 {
margin-top: 30px;
padding-bottom: 20px;
}
p {
margin-top: 10px;
margin-bottom: 10px;
}
figure {
margin: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment