28 lines
457 B
CSS
28 lines
457 B
CSS
body {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
h1 {
|
|
font-size: 50px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.centre {
|
|
margin-top: 10%;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.code {
|
|
font-family: "Courier New", Courier, monospace;
|
|
background-color: #222222;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
} |