34 lines
487 B
CSS
34 lines
487 B
CSS
body {
|
|
background: #1abc9c;
|
|
font-family: Tahoma, Arial, sans-serif;
|
|
color: #333;
|
|
}
|
|
h1 {
|
|
font-family: "Times New Roman", serif;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
p, h4 {
|
|
font-size: 20px;
|
|
margin-bottom: 0;
|
|
}
|
|
h4 {
|
|
font-size: 18px;
|
|
}
|
|
ul, ol {
|
|
margin: 0;
|
|
}
|
|
table tr td, table tr th {
|
|
border: 1px solid black;
|
|
padding: 5px;
|
|
}
|
|
img {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
height: 30px;
|
|
width: auto;
|
|
}
|