34 lines
435 B
CSS
Executable file
34 lines
435 B
CSS
Executable file
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
}
|
|
|
|
main {
|
|
margin: 30px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
body {
|
|
background: rgb(35, 35, 35);
|
|
color: white;
|
|
}
|
|
|
|
#header {
|
|
padding: 20px 0;
|
|
text-align: center;
|
|
background: rgb(45, 45, 45);
|
|
}
|
|
|
|
#footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
background: rgb(45, 45, 45);
|
|
color: rgb(127, 127, 127);
|
|
text-align: right;
|
|
}
|