2020-03-06 18:13:35 +00:00
|
|
|
html {
|
|
|
|
background: #fafafa;
|
|
|
|
}
|
2020-03-16 15:15:43 +00:00
|
|
|
html.night {
|
|
|
|
background: #333;
|
|
|
|
}
|
2020-03-16 15:28:27 +00:00
|
|
|
html.ready,
|
|
|
|
html.ready body,
|
2020-03-25 10:46:06 +00:00
|
|
|
html.ready a {
|
2020-03-16 15:28:27 +00:00
|
|
|
transition: 0.2s all;
|
|
|
|
}
|
2020-03-06 17:39:05 +00:00
|
|
|
body {
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 100vh;
|
2020-03-19 07:54:37 +00:00
|
|
|
margin: 0 0 0 0;
|
2020-03-06 17:39:05 +00:00
|
|
|
}
|
2020-03-16 15:15:43 +00:00
|
|
|
html.night body {
|
|
|
|
color: white;
|
|
|
|
}
|
2020-03-06 18:13:35 +00:00
|
|
|
#main {
|
2020-03-06 17:39:05 +00:00
|
|
|
flex-grow: 1;
|
2020-03-06 18:13:35 +00:00
|
|
|
width: 80%;
|
|
|
|
margin: 0 auto;
|
2020-03-19 07:54:37 +00:00
|
|
|
padding-bottom: 10px;
|
2020-03-06 17:39:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
2020-03-06 18:13:35 +00:00
|
|
|
font-size: 4em;
|
|
|
|
font-weight: 200 !important;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: "Open Sans", "Roboto", sans-serif;
|
|
|
|
font-weight: 400;
|
2020-03-06 17:39:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#bune {
|
|
|
|
height:200px;
|
|
|
|
min-height: 15vh;
|
2020-03-07 10:04:45 +00:00
|
|
|
margin: 50px auto 0;
|
2020-03-06 17:39:05 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:48:18 +00:00
|
|
|
#main > p, #main > div > p {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2020-03-12 09:28:37 +00:00
|
|
|
p, ul {
|
2020-03-06 17:39:05 +00:00
|
|
|
margin: 20px auto;
|
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: "- ";
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: mediumpurple;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-04-04 13:38:09 +00:00
|
|
|
.contact-list {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
border-bottom: thin #999 solid;
|
|
|
|
}
|
|
|
|
html.night .contact-list {
|
|
|
|
border-bottom-color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-list li.icon {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.contact-list li.icon::before {
|
|
|
|
content: "\200B"; /* https://developer.mozilla.org/en-US/docs/Web/CSS/list-style#Accessibility_concerns */
|
|
|
|
display: inline-block;
|
|
|
|
background-size: contain;
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
background-position: center;
|
|
|
|
margin-left: calc(-1em - 5px);
|
|
|
|
vertical-align: text-top;
|
|
|
|
margin-right: 5px;
|
|
|
|
filter: invert(0%);
|
|
|
|
}
|
|
|
|
html.night .contact-list li.icon::before {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
2020-03-15 11:34:01 +00:00
|
|
|
#projects, #screenshots, .donation-methods {
|
2020-03-07 10:04:45 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
.project {
|
|
|
|
background: linear-gradient(to bottom, #0dd, mediumpurple) no-repeat;
|
|
|
|
background-size: 2px;
|
2020-03-15 11:34:01 +00:00
|
|
|
}
|
|
|
|
.project, .donation-method {
|
2020-03-25 10:39:23 +00:00
|
|
|
flex: 1 1 400px;
|
2020-03-07 10:04:45 +00:00
|
|
|
padding: 10px;
|
2020-03-15 11:34:01 +00:00
|
|
|
padding-bottom: 30px;
|
2020-03-07 10:04:45 +00:00
|
|
|
margin: 10px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-03-15 11:34:01 +00:00
|
|
|
.project::before, .donation-method::before {
|
2020-03-07 10:04:45 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
content: "";
|
|
|
|
z-index: -1;
|
|
|
|
position: absolute;
|
|
|
|
background: linear-gradient(to bottom right, #00000003, #0000000c);
|
2020-03-16 15:15:43 +00:00
|
|
|
}
|
|
|
|
html.night .project::before,
|
|
|
|
html.night .donation-method::before {
|
|
|
|
background: linear-gradient(to bottom right, #ffffff03, #ffffff0c);
|
2020-03-07 10:04:45 +00:00
|
|
|
}
|
2020-03-15 11:34:01 +00:00
|
|
|
.project .footer, .donation-method .footer {
|
2020-03-07 10:55:55 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
margin: 10px 0;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2020-03-27 04:04:28 +00:00
|
|
|
.project .footer .spacer:not(:last-child)::after,
|
|
|
|
.subheading-links .spacer:not(:last-child)::after {
|
2020-03-07 10:55:55 +00:00
|
|
|
content: " - ";
|
|
|
|
}
|
2020-03-15 11:34:01 +00:00
|
|
|
.project h2, .donation-method h2 {
|
2020-03-07 10:04:45 +00:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-07 10:55:55 +00:00
|
|
|
.subheading-links {
|
|
|
|
font-style: italic;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#screenshots a {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 600px;
|
|
|
|
max-width: 80%;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
#screenshots a img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-03-12 09:21:03 +00:00
|
|
|
header {
|
|
|
|
background: mediumpurple;
|
2020-03-25 12:31:59 +00:00
|
|
|
color: white;
|
2020-03-12 09:21:03 +00:00
|
|
|
padding: 0 30px;
|
2020-03-12 09:28:12 +00:00
|
|
|
display: flex;
|
2020-03-26 05:24:08 +00:00
|
|
|
/* justify-content: space-between; */
|
2020-03-25 09:21:45 +00:00
|
|
|
flex-wrap: wrap;
|
2020-03-25 12:31:59 +00:00
|
|
|
user-select: none;
|
2020-03-12 09:28:12 +00:00
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
header h1 {
|
|
|
|
display: none;
|
|
|
|
color: white;
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2020-03-25 12:31:59 +00:00
|
|
|
header a, #show-more {
|
2020-03-12 09:21:03 +00:00
|
|
|
color: white;
|
|
|
|
display: inline-block;
|
2020-03-25 12:36:32 +00:00
|
|
|
padding: 5px 12px;
|
2020-03-25 10:46:06 +00:00
|
|
|
transition: 0.2s all;
|
|
|
|
}
|
2020-03-16 15:15:43 +00:00
|
|
|
header a.current {
|
|
|
|
background: linear-gradient(to bottom, white, #fafafa);
|
|
|
|
color: mediumpurple;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
html.night header a.current {
|
2020-03-25 12:36:32 +00:00
|
|
|
color: white;
|
2020-03-16 15:15:43 +00:00
|
|
|
background: linear-gradient(to bottom, #282828, #333);
|
|
|
|
}
|
2020-03-25 12:31:59 +00:00
|
|
|
header a:hover, #show-more:hover {
|
2020-03-12 09:21:03 +00:00
|
|
|
background-color: #fff8;
|
|
|
|
}
|
2020-03-25 12:31:59 +00:00
|
|
|
html.night header a:hover,
|
|
|
|
hrml.night #show-more:hover {
|
2020-03-16 15:15:43 +00:00
|
|
|
background-color: #0008;
|
|
|
|
}
|
|
|
|
|
2020-03-26 05:24:08 +00:00
|
|
|
.more {
|
|
|
|
display: contents;
|
|
|
|
}
|
|
|
|
|
|
|
|
#spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2020-03-25 12:31:59 +00:00
|
|
|
#show-more {
|
|
|
|
display: none;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:39:23 +00:00
|
|
|
.lynnesoft {
|
2020-03-25 09:21:45 +00:00
|
|
|
background: center/contain url('/assets/img/lynnesoft.png') no-repeat;
|
2020-03-26 05:24:08 +00:00
|
|
|
height: 32px;
|
2020-03-25 09:21:45 +00:00
|
|
|
width: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-03-26 05:24:08 +00:00
|
|
|
.lynnesoft.desktop {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
.lynnesoft.mobile {
|
|
|
|
display: none;
|
|
|
|
margin: 0 auto;
|
2020-03-26 05:24:08 +00:00
|
|
|
min-height: 32px;
|
2020-03-25 10:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#hamburger {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
z-index: 1;
|
2020-03-25 11:12:20 +00:00
|
|
|
padding: 10px;
|
|
|
|
background: #fafafa;
|
|
|
|
border-radius: 10px;
|
|
|
|
height: 27px;
|
|
|
|
width: 27px;
|
2020-03-25 10:39:23 +00:00
|
|
|
}
|
2020-03-25 11:12:20 +00:00
|
|
|
html.night #hamburger {
|
|
|
|
background: #333;
|
|
|
|
}
|
|
|
|
#hb-icon {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
mediumpurple, mediumpurple 10%,
|
|
|
|
#fafafa 10%, #fafafa 45%,
|
|
|
|
mediumpurple 45%, mediumpurple 55%,
|
|
|
|
#fafafa 55%, #fafafa 90%,
|
|
|
|
mediumpurple 90%, mediumpurple 100%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
html.night #hb-icon {
|
|
|
|
background: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
mediumpurple, mediumpurple 10%,
|
|
|
|
#333 10%, #333 45%,
|
|
|
|
mediumpurple 45%, mediumpurple 55%,
|
|
|
|
#333 55%, #333 90%,
|
|
|
|
mediumpurple 90%, mediumpurple 100%
|
|
|
|
);
|
2020-03-25 10:39:23 +00:00
|
|
|
}
|
2020-03-25 09:21:45 +00:00
|
|
|
|
2020-03-16 15:15:43 +00:00
|
|
|
#theme-control {
|
|
|
|
color: white;
|
|
|
|
border: thin white solid;
|
|
|
|
border-radius: 2px;
|
2020-03-26 05:24:08 +00:00
|
|
|
padding: 2px 7px;
|
2020-03-16 15:15:43 +00:00
|
|
|
cursor: pointer;
|
2020-03-26 05:24:08 +00:00
|
|
|
height: max-content;
|
|
|
|
margin: auto 0;
|
2020-03-16 15:15:43 +00:00
|
|
|
}
|
|
|
|
#theme-control::before {
|
|
|
|
content: "Theme: Day";
|
|
|
|
}
|
|
|
|
html.night #theme-control::before {
|
|
|
|
content: "Theme: Night";
|
|
|
|
}
|
2020-03-12 09:21:03 +00:00
|
|
|
|
2020-03-25 14:13:08 +00:00
|
|
|
button, a.button {
|
|
|
|
background: mediumpurple;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: white;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0 20px;
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#quiz {
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.quiz-popup:not(.null) {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
color: white;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
font-size: 3em;
|
|
|
|
padding-top: 40px;
|
|
|
|
animation: quiz-popup-fadeout 0.25s 0.25s linear forwards;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
.quiz-popup.true {
|
|
|
|
background: #0c9;
|
|
|
|
}
|
|
|
|
.quiz-popup.true::before {
|
|
|
|
content: "Correct!";
|
|
|
|
}
|
|
|
|
.quiz-popup.false {
|
|
|
|
background: #c03;
|
|
|
|
}
|
|
|
|
.quiz-popup.false::before {
|
|
|
|
content: "Incorrect!";
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes quiz-popup-fadeout {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-16 16:32:01 +00:00
|
|
|
/*this is very silly do not look*/
|
|
|
|
#big-leggy-lynne {
|
|
|
|
margin: 40px auto 0;
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#big-leggy-lynne div {
|
|
|
|
width: 100%;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
#bll-top {
|
|
|
|
background: url('/assets/img/bll-top.png');
|
|
|
|
}
|
|
|
|
#bll-leggies {
|
|
|
|
transition: 0.3s all;
|
|
|
|
background: url('/assets/img/bll-leggy.png');
|
|
|
|
}
|
|
|
|
#bll-bottom {
|
|
|
|
background: url('/assets/img/bll-send-pics.png');
|
|
|
|
}
|
|
|
|
#bll-enlarge {
|
|
|
|
font-size: 2em;
|
|
|
|
display: block;
|
2020-03-25 14:13:08 +00:00
|
|
|
margin: 30px auto;
|
2020-03-16 16:32:01 +00:00
|
|
|
}
|
|
|
|
|
2020-03-25 12:31:59 +00:00
|
|
|
@media only screen and (max-width: 1200px) {
|
|
|
|
/* when the moon hits your eye like a big pizza pie that's a*/
|
|
|
|
.more a {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.more.show a {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#show-more {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 11:16:30 +00:00
|
|
|
@media only screen and (max-width: 1000px) {
|
2020-03-25 09:21:45 +00:00
|
|
|
#main {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2020-03-25 11:16:30 +00:00
|
|
|
header a {
|
|
|
|
padding: 5px 8px;
|
|
|
|
}
|
2020-03-25 11:21:04 +00:00
|
|
|
header {
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
2020-03-25 09:21:45 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 17:39:05 +00:00
|
|
|
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
|
2020-03-07 10:55:55 +00:00
|
|
|
#main {
|
2020-03-25 10:39:23 +00:00
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
padding-left: 15px;
|
2020-03-06 17:39:05 +00:00
|
|
|
}
|
2020-03-12 09:28:37 +00:00
|
|
|
p, ul {
|
2020-03-06 17:39:05 +00:00
|
|
|
line-height: 1.6em;
|
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
#screenshots a {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lynnesoft.desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.lynnesoft.mobile {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#hamburger {
|
|
|
|
display: inline-block;
|
|
|
|
touch-action: manipulation;
|
|
|
|
}
|
2020-03-12 09:28:12 +00:00
|
|
|
header {
|
|
|
|
padding: 0;
|
2020-03-25 10:39:23 +00:00
|
|
|
position: fixed;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
top: 0;
|
|
|
|
left: -100vw;
|
|
|
|
justify-content: start;
|
|
|
|
transition: 0.2s all;
|
2020-03-26 05:24:08 +00:00
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
overflow-y: auto;
|
2020-03-12 09:28:12 +00:00
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
header.active {
|
|
|
|
left: 0;
|
2020-03-06 17:39:05 +00:00
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
html.night header {
|
|
|
|
background: black;
|
2020-03-07 10:55:55 +00:00
|
|
|
}
|
2020-03-25 10:39:23 +00:00
|
|
|
header h1 {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
header span:not(#theme-control), header a {
|
|
|
|
height: unset;
|
|
|
|
}
|
|
|
|
header a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
header > span {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2020-03-26 05:24:08 +00:00
|
|
|
header a {
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#spacer {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: 50px;
|
|
|
|
}
|
|
|
|
|
2020-03-25 12:31:59 +00:00
|
|
|
.more a {
|
2020-03-25 14:20:11 +00:00
|
|
|
display: block;
|
2020-03-25 12:31:59 +00:00
|
|
|
}
|
|
|
|
#show-more {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:39:23 +00:00
|
|
|
#theme-control {
|
|
|
|
width: max-content;
|
2020-03-26 05:24:08 +00:00
|
|
|
margin: 20px auto;
|
2020-03-25 10:39:23 +00:00
|
|
|
display: block;
|
|
|
|
touch-action: manipulation;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main.active {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project, .donation-method {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
.project {
|
|
|
|
padding-bottom: unset;
|
|
|
|
}
|
|
|
|
.project p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.project .footer {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.project .footer a {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
2020-03-27 04:04:28 +00:00
|
|
|
.project .footer .spacer:not(:last-child)::after {
|
2020-03-25 10:39:23 +00:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
}
|