64 lines
926 B
CSS
64 lines
926 B
CSS
* {
|
|
font-family: Helvetica; }
|
|
|
|
.top_bar {
|
|
background-color: #16161d;
|
|
padding: 1px; }
|
|
|
|
.column {
|
|
float: left;
|
|
width: 90%;
|
|
margin-left: 5%;
|
|
margin-right: 5%; }
|
|
|
|
.content-box {
|
|
background-color: rgba(31, 31, 40, 0.7);
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
width: 80%;
|
|
margin: 10px;
|
|
margin-left: auto;
|
|
margin-right: auto; }
|
|
|
|
.icon-group {
|
|
display: flex; }
|
|
|
|
.icon {
|
|
border-radius: 10px;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 15px;
|
|
margin-top: 0;
|
|
margin-bottom: 0; }
|
|
|
|
.icon-text {
|
|
margin-top: 0;
|
|
text-align: center; }
|
|
|
|
.profile_picture {
|
|
width: 100%; }
|
|
|
|
h1 {
|
|
color: #7e9cd8;
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
padding: 10px 0px; }
|
|
|
|
h2 {
|
|
color: #ff5d62; }
|
|
|
|
p {
|
|
color: #dcd7ba; }
|
|
|
|
body {
|
|
background-image: url("PerfectSunrise.jpg");
|
|
background-size: auto 150%;
|
|
background-repeat: no-repeat;
|
|
margin: 0px; }
|
|
|
|
a:link {
|
|
color: #7e9cd8; }
|
|
|
|
a:visited {
|
|
color: #957fb8; }
|