123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @import 'colors.scss';
- footer {
- color:white;
- background-color:grey;
- p {
- text-align:center;
- }
- .flex {
- padding:2em 0;
- display:flex;
- justify-content:space-around;
- background-color: $darker-blue;
- h2 {
- margin-top:0;
- }
- }
- }
- .copyright {
- padding:2em;
- }
- /* there is only one form on the website */
- form {
- label {
- min-width:10em;
- display:inline-block;
- padding-left:2em;
- }
- input {
- min-width:15em;
- display:inline-block;
- margin-left:2em;
- margin-bottom:2em;
- }
- textarea {
- margin-left:2.5em;
- }
- ul {
- list-style-type:none;
- }
- fieldset {
- margin-bottom:2em;
- }
- }
|