24 lines
320 B
CSS
24 lines
320 B
CSS
|
/* Common styles for all pages */
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: #161c21;
|
||
|
color: aliceblue;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
max-width: 300px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
display: block;
|
||
|
margin-top: 10px;
|
||
|
text-align: center;
|
||
|
}
|