77 lines
941 B
CSS
77 lines
941 B
CSS
* {
|
|
font-family: Helvetica; }
|
|
|
|
.top_bar {
|
|
background-color: #16161d;
|
|
padding: 1px; }
|
|
|
|
.column {
|
|
float: left;
|
|
width: 90%;
|
|
margin-left: 5%;
|
|
margin-right: 5%; }
|
|
|
|
.icon-group {
|
|
display: flex; }
|
|
|
|
.icon {
|
|
border-radius: 10px;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin: 15px;
|
|
margin-top: 0;
|
|
margin-bottom: 0; }
|
|
|
|
.icon-text {
|
|
margin-top: 0;
|
|
text-align: center; }
|
|
|
|
.profile_picture {
|
|
width: 100%; }
|
|
|
|
.date {
|
|
color: #c34043; }
|
|
|
|
.author {
|
|
color: #e6c384; }
|
|
|
|
h1 {
|
|
color: #7e9cd8; }
|
|
|
|
h2 {
|
|
color: #957fb8; }
|
|
|
|
h3 {
|
|
color: #c34043; }
|
|
|
|
p {
|
|
color: #dcd7ba; }
|
|
|
|
li {
|
|
color: #dcd7ba; }
|
|
|
|
img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
text-align: center; }
|
|
|
|
body {
|
|
background-color: #1F1F28;
|
|
padding: 10px;
|
|
width: 80%;
|
|
margin: 10px;
|
|
margin-left: auto;
|
|
margin-right: auto; }
|
|
|
|
a:link {
|
|
color: #7e9cd8; }
|
|
|
|
a:visited {
|
|
color: #957fb8; }
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 10%; }
|