Finish 9
This commit is contained in:
@@ -4,7 +4,59 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>CSS Übung</title>
|
<title>CSS Übung</title>
|
||||||
<style>
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Arial;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: darkorange;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration-line: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border: 3px solid #ecc3a4;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
border: 3px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead tr th {
|
||||||
|
background: #faebd7;
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr:nth-child(even) {
|
||||||
|
background: #faebd7;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
border-top: 3px solid #ecc3a4;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul li {
|
||||||
|
display: inline;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul li:not(:first-child) {
|
||||||
|
border-left: 3px solid #ecc3a4;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -2,20 +2,20 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
h1 {
|
body {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
|
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
text-decoration-line: underline;
|
text-decoration-line: underline;
|
||||||
}
|
}
|
||||||
.untertitel {
|
.untertitel {
|
||||||
font-family: Arial;
|
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
.haupt {
|
.haupt {
|
||||||
font-family: Arial;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.beilage {
|
.beilage {
|
||||||
font-family: Arial;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user