37 lines
412 B
CSS
37 lines
412 B
CSS
html, body {
|
|
color: rgb(50, 50, 50);
|
|
background: rgb(246, 248, 251);
|
|
|
|
font-family: Open Sans, sans-serif;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: rgb(140, 140, 180);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: rgb(90, 90, 130);
|
|
}
|
|
|
|
.github {
|
|
font-size: 0;
|
|
color: inherit;
|
|
}
|
|
|
|
.github .fa {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
}
|
|
|
|
.links a {
|
|
margin: 0 0.5rem;
|
|
}
|