You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
554 B
CSS
39 lines
554 B
CSS
body { min-height: 100vh }
|
|
body::before {
|
|
content: "";
|
|
height: 8px;
|
|
background: linear-gradient(270deg, #D32D41 0%, #FF7300 100%) 0% 0% no-repeat padding-box;
|
|
}
|
|
|
|
header nav a:hover { color: #dd4733 }
|
|
|
|
a {
|
|
color: #000;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
width: var(--width);
|
|
margin: 0 auto;
|
|
padding: 1em;
|
|
}
|
|
|
|
footer {
|
|
color: #fff;
|
|
background-color: #000;
|
|
}
|
|
footer a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|