158 lines
2.3 KiB
CSS
158 lines
2.3 KiB
CSS
html {
|
|
font: 100% monospace, sans-serif;
|
|
color: black;
|
|
}
|
|
|
|
body {
|
|
max-width: 1040px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-right: 30px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 300%;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 200%;
|
|
}
|
|
|
|
h2.inline {
|
|
margin: 0px;
|
|
}
|
|
|
|
a.internal {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
section {
|
|
display: block;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
div {
|
|
display: block;
|
|
}
|
|
|
|
div.info {
|
|
margin-top: 10px;
|
|
color: #222F;
|
|
font-style: italic;
|
|
}
|
|
div.info-old {
|
|
background-color: #0000000C;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
padding-top: 25px;
|
|
padding-bottom: 25px;
|
|
padding-left: 40px;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.embed {
|
|
background-color: #000F;
|
|
border-radius: 10px;
|
|
background-color: #000F;
|
|
border-radius: 10px;
|
|
margin-top: 10px;
|
|
margin-bottom: 3px;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.embed[youtube] {
|
|
height: 400px;
|
|
}
|
|
|
|
.github-block {
|
|
display: grid;
|
|
color: white;
|
|
grid-template-columns: 125px auto;
|
|
vertical-align: center;
|
|
max-width: 650px;
|
|
width: 100%;
|
|
margin-left: 0px;
|
|
background-color: #445F;
|
|
border-color: #111F;
|
|
border-width: 10px;
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
}
|
|
|
|
div.github-logo {
|
|
background-color: #0000;
|
|
background-image: url("../assets/octicon.png");
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
filter: invert(100%);
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
.project {
|
|
margin-left: 1em;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.site-header {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
text-align: center; background-color: #0000;
|
|
}
|
|
|
|
.site-header > ul > li {
|
|
display: inline-block;
|
|
margin-right: 30px;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.project-grid {
|
|
display: grid;
|
|
grid-gap: 20px;
|
|
grid-template-columns: 50% 50%;
|
|
}
|
|
|
|
.personal-info-grid {
|
|
display: grid;
|
|
grid-gap: 20px;
|
|
grid-template-columns: 80% auto;
|
|
}
|
|
|
|
.personal-info-photo {
|
|
background-image: url("../assets/personal-info-photo.jpg");
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.experience-grid > div {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
*[indented] {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.code-box {
|
|
background-color: #2C2C3CFF;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
overflow: visible;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.code-content {
|
|
overflow-y: hidden;
|
|
overflow-x: scroll;
|
|
}
|