12345678910111213141516171819202122 |
- .note {
- margin: 10px;
- padding: 5px;
- background-color: lightgrey;
- color: navy;
- border-color: black;
- border: 1px solid;
- width: 200px;
- }
- .note .date {
- font-size: small;
- }
- .note .body {
- background-color: grey;
- }
- .note h3 {
- margin-top: 0px;
- }
|