lynnesbian.space/assets/style.css

242 lines
3.9 KiB
CSS
Raw Normal View History

2020-03-06 18:13:35 +00:00
html {
background: #fafafa;
}
2020-03-16 15:15:43 +00:00
html.night {
background: #333;
}
html.ready,
html.ready body,
html.ready a,
html.ready header a {
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-12 09:28:37 +00:00
p, ul {
2020-03-06 17:39:05 +00:00
margin: 20px auto;
line-height: 1.3em;
}
p, ul {
font-size: 120%;
}
li {
margin-top: 3px;
}
ul {
list-style-type: "- ";
}
a {
color: mediumpurple;
text-decoration: none;
}
2020-03-16 15:15:43 +00:00
html.night a {
color: #a9f;
2020-03-15 13:24:58 +00:00
}
2020-03-06 17:39:05 +00:00
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 {
flex: 1 0 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 {
position: absolute;
bottom: 0;
margin: 10px 0;
font-style: italic;
}
2020-03-16 15:15:43 +00:00
.project .footer a:not(:last-child)::after,
.subheading-links a:not(:last-child)::after {
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;
}
.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;
padding: 0 30px;
2020-03-12 09:28:12 +00:00
display: flex;
justify-content: space-between;
flex-wrap: wrap;
2020-03-12 09:28:12 +00:00
}
header span {
display: inline-block;
2020-03-12 09:21:03 +00:00
}
header a {
color: white;
display: inline-block;
padding: 5px 15px;
}
header span:not(#theme-control), header a {
height: 100%;
}
2020-03-16 15:15:43 +00:00
html.night header a {
color: white;
}
header a.current {
background: linear-gradient(to bottom, white, #fafafa);
color: mediumpurple;
pointer-events: none;
}
html.night header a.current {
background: linear-gradient(to bottom, #282828, #333);
}
2020-03-12 09:21:03 +00:00
header a:hover {
background-color: #fff8;
}
2020-03-16 15:15:43 +00:00
html.night header a:hover {
background-color: #0008;
}
#lynnesoft {
background: center/contain url('/assets/img/lynnesoft.png') no-repeat;
height: 32px;
width: 32px;
display: inline-block;
vertical-align: top;
}
2020-03-16 15:15:43 +00:00
#theme-control {
color: white;
border: thin white solid;
border-radius: 2px;
padding: 2px 10px;
cursor: pointer;
}
#theme-control::before {
content: "Theme: Day";
}
html.night #theme-control::before {
content: "Theme: Night";
}
2020-03-12 09:21:03 +00:00
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 {
background: mediumpurple;
border: none;
cursor: pointer;
color: white;
font-size: 2em;
padding: 10px;
margin: 30px auto;
display: block;
}
@media only screen and (max-width: 800px) {
#main {
width: 95%;
}
}
2020-03-06 17:39:05 +00:00
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
#main {
width: 95%;
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-12 09:28:12 +00:00
header {
padding: 0;
}
2020-03-06 17:39:05 +00:00
h1 {
margin-top: 0;
}
#screenshots a {
max-width: 100%;
}
2020-03-07 10:04:45 +00:00
}