mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
105 lines
2.0 KiB
SCSS
105 lines
2.0 KiB
SCSS
|
|
// The header with info about me
|
|
// gets displayed on the left in a wide layout and on the top in a narrow layout
|
|
header {
|
|
border-right: 2px solid #eee; //make a nice dividing line
|
|
position: fixed;
|
|
width: 240px;
|
|
height: 100vw;
|
|
padding-right: 30px;
|
|
padding-left: 30px;
|
|
|
|
flex: 0 0 240px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-end;
|
|
text-align: right;
|
|
top: 0px;
|
|
}
|
|
|
|
//a horizontal dividing line to swap in when we switch to mobile layout
|
|
header hr {
|
|
border:0px solid #eee;
|
|
width: 100%;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
header .profile-pic-name {
|
|
text-align: center;
|
|
}
|
|
|
|
header .avatar {
|
|
max-width: 175px;
|
|
border-radius: 50%;
|
|
padding: 5px;
|
|
border: 1px solid #f2f3f3;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
header h1, header h2 {
|
|
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif", HelveticaNeue-CondensedBlack;
|
|
}
|
|
|
|
header img.icon {
|
|
height: 1em;
|
|
width: 1em;
|
|
margin-right: 0.5em;
|
|
margin-left: 0.5em;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
header p.professional-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
header p.professional-links a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media only screen and (max-width: 700px) {
|
|
header {
|
|
position: relative;
|
|
width: 100%;
|
|
border: 0px;
|
|
text-align: center;
|
|
align-items: center;
|
|
height: auto;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
|
|
|
|
header .avatar {
|
|
margin: auto;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
nav a {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
header p.professional-links {
|
|
flex-direction: row;
|
|
}
|
|
|
|
header hr {
|
|
border-width:1px;
|
|
}
|
|
|
|
header p.professional-links a {
|
|
margin-left: 1em;
|
|
margin-right: 1em;
|
|
}
|
|
} |