defiance-ng/static/css/style.css

52 lines
714 B
CSS
Raw Normal View History

2022-07-20 14:27:20 -07:00
body {
2022-07-20 14:57:54 -07:00
justify-content: center;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
header h1 {
text-align: center;
}
2022-07-20 14:27:20 -07:00
2022-07-20 14:57:54 -07:00
code {
background-color: lightslategrey;
color: white;
border-radius: 5px;
padding: 1pt;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
footer {
text-align: center;
clear: both;
}
2022-07-20 14:27:20 -07:00
2022-07-20 14:57:54 -07:00
/* For header.html */
#nav-button {
background-color: #da644a;
color: white;
padding: 15px 25px;
text-decoration: none;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
#nav-button:hover {
background-color: #e69886;
2022-07-20 14:27:20 -07:00
}
2022-07-20 14:57:54 -07:00
/* For author.html */
#avatar {
border-radius: 8px;
max-width: 200px;
height: auto;
}
#pronouns {
color: maroon;
2022-07-20 14:27:20 -07:00
}
/* For meta.html */
.meta {
text-align: center;
clear: both;
2022-07-20 14:57:54 -07:00
}
#meta-avatar {
border-radius: 8px;
max-width: 60px;
height: auto;
2022-07-20 14:27:20 -07:00
}