58 lines
905 B
CSS
58 lines
905 B
CSS
/*!
|
|
* contact.css - https://heili.eu
|
|
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
|
* E-mail: lukas.heiligenbrunner@gmail.com
|
|
* Copyright (c) 2020 Lukas Heiligenbrunner
|
|
*/
|
|
|
|
#section5 {
|
|
background-color: #7a96c2;
|
|
}
|
|
|
|
.personalcontacts {
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.personalcontacts a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#githubsign {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
#emailsign {
|
|
|
|
}
|
|
|
|
#gitlabsign {
|
|
margin-top: 30px;
|
|
position: relative;
|
|
left: -6px;
|
|
}
|
|
|
|
.contactsign {
|
|
width: 400px;
|
|
padding: 10px;
|
|
border-radius: 5mm;
|
|
font-size: larger;
|
|
color: black;
|
|
}
|
|
|
|
.contactsign:hover {
|
|
color: white;
|
|
background-color: #194378;
|
|
transition: background-color 500ms;
|
|
}
|
|
|
|
#section5 {
|
|
height: 50%;
|
|
}
|
|
|
|
/* Screen smaller than 600px -- general small width screens */
|
|
@media screen and (max-width: 1200px) {
|
|
/*#section5 {*/
|
|
/* height: 100%;*/
|
|
/*}*/
|
|
}
|