30 lines
390 B
CSS
30 lines
390 B
CSS
/*
|
|
* -- BASE STYLES --
|
|
* Most of these are inherited from Base, but I want to change a few.
|
|
*/
|
|
body {
|
|
color: #333;
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #1b98f8;
|
|
}
|
|
a.github-link {
|
|
color: #fff;
|
|
}
|
|
|
|
section.content {
|
|
|
|
padding-top: 3em;
|
|
flex-direction: column;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.watch-table .error {
|
|
color: #aa0000;
|
|
} |