better contact stuffs

This commit is contained in:
Christian
2021-01-04 19:42:27 -05:00
parent 84312a2a99
commit 36b375df43
2 changed files with 50 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
font-family: "Open Sans";
background-color: #0f1011;
color: white;
width: 69vw; /* nice */
width: 69%;
margin: auto;
}
a {
@@ -14,4 +14,22 @@ a {
font-family: "Open Sans";
src: url(assets/OpenSans-Regular.ttf);
}
* { /* unfucks some stuff */
box-sizing: border-box;
}
.contact {
float: left;
min-width: 150px;
width: 10%;
padding: 15px;
margin: 5px;
background-color: #232629;
border-radius: 10px;
text-align: center;
}
@media screen and (max-width:500px) {
.contact {
width: 100%;
}
}
/* TODO: make it not bad */