limepot-xyz/style.css

226 lines
4.3 KiB
CSS
Raw Normal View History

2022-12-19 18:37:00 -07:00
/*GENERAL*/
2022-12-19 05:37:53 -07:00
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono&display=swap');
2022-12-19 18:37:00 -07:00
a:link {
color: rgb(173, 173, 173);
}
a:visited{
color:rgb(173, 173, 173);
}
/*GENERAL*/
/*NAVIGATION BAR*/
2022-12-19 05:37:53 -07:00
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Martian', monospace;
}
2022-12-19 18:37:00 -07:00
body{
2022-12-19 14:18:58 -07:00
background:#332e33;
2022-12-19 05:37:53 -07:00
}
2022-12-19 18:37:00 -07:00
.navigation{
2022-12-19 05:37:53 -07:00
position: fixed;
inset: 20px 0 20px 20px;
2022-12-19 14:49:25 -07:00
width: 80px;
2022-12-19 14:18:58 -07:00
background: #2b272b;
2022-12-19 05:37:53 -07:00
transition: 0.5s;
display: flex;
justify-content: center;
align-items: center;
}
2022-12-19 18:37:00 -07:00
.navigation.open{
2022-12-19 05:37:53 -07:00
width: 250px;
}
2022-12-19 18:37:00 -07:00
.navigation .menuToggle{
2022-12-19 05:37:53 -07:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 60px;
border-bottom: 1px solid rgba(0,0,0,0.25);
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0 23px;
}
2022-12-19 18:37:00 -07:00
.navigation .menuToggle::before{
2022-12-19 05:37:53 -07:00
content: '';
position: absolute;
width: 30px;
height: 2px;
background: #413b41;
transform: translateY(-8px);
transition: 0.5s;
}
2022-12-19 18:37:00 -07:00
.navigation.open .menuToggle::before{
2022-12-19 05:37:53 -07:00
transform: translateY(0px) rotate(45deg);
}
2022-12-19 18:37:00 -07:00
.navigation .menuToggle::after{
2022-12-19 05:37:53 -07:00
content: '';
position: absolute;
width: 30px;
height: 2px;
background: #413b41;
transform: translateY(8px);
transition: 0.5s;
box-shadow: 0 -8px 0 #413b41;
}
2022-12-19 18:37:00 -07:00
.navigation .mTitle
2022-12-19 05:37:53 -07:00
{
2022-12-19 18:37:00 -07:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 60px;
border-bottom: 1px solid rgba(0,0,0,0.25);
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0 23px;
}
.navigation.mTitle .menuToggle::after{
2022-12-19 20:12:48 -07:00
content:'LimePotato';
2022-12-19 18:37:00 -07:00
}
.navigation.open .menuToggle::after{
2022-12-19 05:37:53 -07:00
transform: translateY(0px) rotate(-45deg);
box-shadow: 0 0 0 #413b41;
2022-12-19 14:18:58 -07:00
}
2022-12-19 18:37:00 -07:00
.navigation ul{
2022-12-19 14:18:58 -07:00
display: flex;
flex-direction: column;
gap: 10px;
width: 100%
}
2022-12-19 18:37:00 -07:00
.navigation ul li{
2022-12-19 14:18:58 -07:00
list-style: none;
position: relative;
width: 100%;
height: 60px;
padding: 0 10px;
2022-12-19 14:49:25 -07:00
transition: 0.5s;
}
2022-12-19 18:37:00 -07:00
.navigation ul li.active{
2022-12-19 14:49:25 -07:00
transform: translateX(30px)
2022-12-19 14:18:58 -07:00
}
2022-12-19 18:37:00 -07:00
.navigation.open ul li.active{
2022-12-19 15:03:46 -07:00
transform: translateX(10px)
}
2022-12-19 18:37:00 -07:00
.navigation ul li a{
2022-12-19 14:18:58 -07:00
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
text-align: center;
text-decoration: none;
}
2022-12-19 18:37:00 -07:00
.navigation ul li a .icon{
2022-12-19 14:18:58 -07:00
position: relative;
display: block;
min-width: 55px;
height: 55px;
line-height: 60px;
transition: 05.s;
border-radius: 10px;
font-size: 1.75em;
2022-12-19 16:21:17 -07:00
color: rgb(90, 90, 90);
2022-12-19 14:18:58 -07:00
}
2022-12-19 18:37:00 -07:00
.navigation ul li.active a .icon{
2022-12-19 14:18:58 -07:00
color: #fff;
background: var(--clr);
2022-12-19 14:49:25 -07:00
}
2022-12-19 18:37:00 -07:00
.navigation ul li a .icon::before{
2022-12-19 14:49:25 -07:00
content: '';
position: absolute;
top: 10px;
left: 0;
width: 100%;
height: 100%;
background: var(--clr);
filter: blur(8px);
opacity: 0;
transition: 0.5s;
}
2022-12-19 18:37:00 -07:00
.navigation ul li.active a .icon::before{
2022-12-19 14:49:25 -07:00
opacity: 0.5;
}
2022-12-19 18:37:00 -07:00
.navigation ul li a .text{
2022-12-19 14:49:25 -07:00
position: relative;
padding: 0 15px;
height: 60px;
display: flex;
align-items: center;
color: rgb(173, 173, 173);
opacity: 0;
visibility: hidden;
transition: 0.5s;
}
2022-12-19 18:37:00 -07:00
.navigation.open ul li a .text{
2022-12-19 14:49:25 -07:00
opacity: 1;
visibility: visible;
}
2022-12-19 18:37:00 -07:00
.navigation ul li.active a .text{
2022-12-19 14:49:25 -07:00
color: var(--clr);
}
2022-12-19 18:37:00 -07:00
/*NAVIGATION BAR*/
/*PAGE CONTENT*/
.content{
2022-12-19 15:27:23 -07:00
color: rgb(173, 173, 173);
text-align: center;
2022-12-19 18:37:00 -07:00
padding-top: 60px;
}
.content .icon{
display: block;
min-width: 55px;
height: 55px;
transition: 05.s;
border-radius: 10px;
font-size: 2.75em;
2022-12-19 15:27:23 -07:00
}
2022-12-19 18:37:00 -07:00
.content .text{
height: 60px;
align-items: center;
color: rgb(173, 173, 173);
opacity: 0;
visibility: visible;
transition: 0.5s;
padding-left: 500px;
}
.content.text a:link{
visibility: hidden;
}
/*PAGE CONTENT*/
/*AWFUL FUCKING GALLERY BULLSHIT FUCK FUCK FUCK FUCK FUCK FUCK*/
.gallery {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(8, 5vw);
grid-gap: 15px;
padding-left: 280px;
}
.gallery__img {
width: 200%;
height: 100%;
object-fit: cover;
}
.gallery__item--1 {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 3;
}
.gallery__item--2 {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 3;
}
2022-12-19 20:12:48 -07:00
/*AWFUL FUCKING GALLERY BULLSHIT FUCK FUCK FUCK FUCK FUCK FUCK*/