added sara.objectionable.solutions
This commit is contained in:
parent
95f5378727
commit
df7ab8720f
26 changed files with 1217 additions and 0 deletions
25
sara.objectionable.solutions/shared/header.html
Normal file
25
sara.objectionable.solutions/shared/header.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<link type="stylesheet" href="style.css">
|
||||
<div class="site-header">
|
||||
<ul>
|
||||
<li>
|
||||
<a class="internal" href="../index.html#projects">
|
||||
<h2>Projects</h2>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="internal" href="../index.html#experience">
|
||||
<h2>Experience</h2>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="internal" href="https://git.saragerretsen.nl/Sara" target="_blank">
|
||||
<h2>Git↗</h2>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="internal" href="https://blog.winter-software.com/profile/0e41208a-716e-4f10-ae65-8096a10837eb" target="_blank">
|
||||
<h2>Blog↗</h2>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
2
sara.objectionable.solutions/shared/jquery.min.js
vendored
Normal file
2
sara.objectionable.solutions/shared/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
125
sara.objectionable.solutions/shared/projects.css
Normal file
125
sara.objectionable.solutions/shared/projects.css
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
.project-card {
|
||||
padding: 10px;
|
||||
height: 400px;
|
||||
background-color: #333F;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.project-card-role {
|
||||
color: #888F;
|
||||
font-weight: bold;
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
.project-grid {
|
||||
display: grid;
|
||||
grid-gap: 50px 10px;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
.project-grid {
|
||||
display: grid;
|
||||
grid-gap: 50px 10px;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
margin-top: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.project-grid > a {
|
||||
padding: 20px;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.project-grid > a:hover {
|
||||
border-width: 5px;
|
||||
background: #9993;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 15px;
|
||||
color: #99FF;
|
||||
}
|
||||
|
||||
.project-grid > a:visited {
|
||||
color: #444F;
|
||||
}
|
||||
|
||||
.project-grid > a:active {
|
||||
background: #44F3;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.project-card[ruins-of-edis] {
|
||||
background-image: url('../assets/ruins-of-edis-cover.jpg');
|
||||
}
|
||||
|
||||
.project-card[stig-kart] {
|
||||
background-image: url('../assets/stig-kart-cover.png');
|
||||
}
|
||||
|
||||
.project-card[spirit-of-science] {
|
||||
background-image: url('../assets/spirit-of-science-cover.jpg');
|
||||
}
|
||||
|
||||
.project-card[boids] {
|
||||
background-image: url('../assets/boids-ecs-cover.jpg');
|
||||
}
|
||||
|
||||
.project-card[gml-tile-movement] {
|
||||
background-image: url('../assets/gml-tile-movement-cover.jpg');
|
||||
}
|
||||
|
||||
.project-card[tower-vr] {
|
||||
background-image: url('../assets/tower-vr-cover.jpg');
|
||||
background-position: 50% 100%
|
||||
}
|
||||
|
||||
.project-card[station-to-station] {
|
||||
background-image: url('../assets/station-to-station-cover.jpg');
|
||||
background-position: 0 0
|
||||
}
|
||||
|
||||
|
||||
.project-card > h2 {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.project-labels {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.project-labels > p {
|
||||
display: inline;
|
||||
color: white;
|
||||
background-color: #5C5F;
|
||||
border-color: black;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-radius: 4px;
|
||||
width: fit-content;
|
||||
margin-bottom: 0px;
|
||||
line-height: 2em;
|
||||
}
|
||||
|
||||
.project-labels > p.play-on-itch {
|
||||
background:#fa5c5c;
|
||||
}
|
||||
|
||||
.project-labels > p.play-on-steam {
|
||||
background:rgb(11, 81, 173);
|
||||
}
|
||||
|
||||
h2.project-title {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
212
sara.objectionable.solutions/shared/style.css
Normal file
212
sara.objectionable.solutions/shared/style.css
Normal file
|
|
@ -0,0 +1,212 @@
|
|||
html {
|
||||
font: 100% monospace, sans-serif;
|
||||
color: black;
|
||||
}
|
||||
|
||||
body {
|
||||
max-width: 1040px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-right: auto;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.5em;
|
||||
margin-bottom: 1px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
h2.inline {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
a.internal {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #BBFF;
|
||||
}
|
||||
|
||||
section {
|
||||
display: block;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
p.intro-paragraph {
|
||||
color: #999F;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.info {
|
||||
margin-top: 10px;
|
||||
color: #222F;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.git-block {
|
||||
display: grid;
|
||||
color: white;
|
||||
grid-template-columns: 125px auto;
|
||||
vertical-align: center;
|
||||
max-width: 660px;
|
||||
width: 94%;
|
||||
margin-left: 0px;
|
||||
background-color: #445F;
|
||||
border-color: #111F;
|
||||
border-width: 10px;
|
||||
border-radius: 5px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.git-block > h2 {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
div.git-logo {
|
||||
background-color: #0000;
|
||||
background-image: url("../assets/blobcat_gitea.png");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
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;
|
||||
}
|
||||
|
||||
.site-header > ul > li > a > h2 {
|
||||
text-decoration: underline;
|
||||
font-size: 175%;
|
||||
padding: 5px 25px;
|
||||
}
|
||||
|
||||
.site-header > ul > li > a > h2:hover {
|
||||
background: #DDF8;
|
||||
color: #334F;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.personal-info-grid {
|
||||
display: 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 {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
p.experience-grid-time {
|
||||
color: #999F;
|
||||
}
|
||||
|
||||
*[indented] {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.code-box {
|
||||
background-color: #2C2C3CFF;
|
||||
border-radius: 10px;
|
||||
overflow: visible;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.code-content {
|
||||
overflow-y: hidden;
|
||||
overflow-x: scroll;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
a.button {
|
||||
background: rgb(0, 170, 255);
|
||||
border-radius: 0.2em;
|
||||
padding: 0.2em 1em;
|
||||
font-weight: bold;
|
||||
font-size: 1.25em;
|
||||
border-radius: 100em;
|
||||
}
|
||||
a.button:hover {
|
||||
background: rgb(162, 224, 255);
|
||||
color: black;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
.personal-info-grid {
|
||||
display: grid;
|
||||
gap: 20px;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.experience-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 80%;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
margin: 3px auto;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue