This video belongs to the openHPI course Web-Technologien. Do you want to see more?
About this video
Errata:
Folie4
Aus
$primary-color: #333;
h1 {
color: $primary-color;
}
a {
color: $primary-color; text-decoration: none;
}
wird natürlich
h1 {
color: #333;
}
a {
color: #333; text-decoration: none;
}
und nicht
body {
color: #333;
}
a {
color: #333; text-decoration: none;
}