You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
1.2 KiB
CSS
99 lines
1.2 KiB
CSS
/* style.css */
|
|
|
|
/* Allgemeine Formatierung */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Header */
|
|
header {
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
nav ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
nav ul li {
|
|
display: inline;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
nav ul li a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Hero-Bereich */
|
|
.hero {
|
|
background-image: url("background.jpg");
|
|
background-size: cover;
|
|
color: #fff;
|
|
padding: 100px;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 40px;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* Inhaltsbereich */
|
|
.content {
|
|
background-color: #f5f5f5;
|
|
padding: 50px;
|
|
}
|
|
|
|
.content h2 {
|
|
color: #333;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.content p {
|
|
color: #666;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
/* style.css */
|
|
|
|
.add-symbol {
|
|
display: inline-block;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
margin-left: 5px;
|
|
color: black;
|
|
}
|
|
|
|
.add-symbol:hover {
|
|
color: darkred;
|
|
}
|
|
|
|
.remove-symbol {
|
|
display: inline-block;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
margin-left: 5px;
|
|
vertical-align: middle;
|
|
color: gray;
|
|
}
|
|
|
|
.remove-symbol:hover {
|
|
color: darkgray;
|
|
}
|