32 lines
272 B
CSS
32 lines
272 B
CSS
body {
|
|
font-family: sans-serif;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.yellow, div.yellow {
|
|
background: yellow;
|
|
color: blue;
|
|
}
|
|
|
|
.flop, div.flop {
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1.yellow {
|
|
background: green;
|
|
}
|
|
|
|
h1.blue {
|
|
color: red;
|
|
}
|
|
|
|
.image {
|
|
width: 70%;
|
|
}
|
|
|
|
.image img {
|
|
width: 100%;
|
|
}
|
|
|
|
|