123456789101112131415161718192021222324252627 |
- body {
- background-color: #eaeab6;
- }
- .foto {
- width: 50%;
- border: 5px dashed green;
- margin: 10px;
- }
- .centered {
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- display: block;
- }
- h1 {
- color: red;
- }
- a {
- color: blue;
- text-decoration: none;
- border-bottom: 1px dotted blue;
- }
- form.feedback-form input,
- form.feedback-form textarea {
- width: 100%;
- }
|