old-website/css/main.css

135 lines
2 KiB
CSS
Raw Normal View History

2022-06-15 22:58:50 +00:00
/*
Main
*/
main section {
2022-06-29 14:00:58 +00:00
margin: 5rem 0; padding: 1rem;
2022-06-15 22:58:50 +00:00
width: auto;
background-color: var(--bg); color: var(--fg);
border-radius: var(--rad);
box-shadow: var(--shadow);
2022-07-13 21:31:47 +00:00
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
2022-06-15 22:58:50 +00:00
}
main section * {
2022-06-22 18:42:22 +00:00
margin: 0 0 0.5rem; padding: 0;
2022-06-15 22:58:50 +00:00
max-width: 100%; width: auto; min-width: none;
border-radius: 5px;
}
main section *:last-child {
margin-bottom: 0;
}
main section img {
2022-06-22 18:42:22 +00:00
margin-bottom: 0.5rem;
height: auto;
}
2022-06-22 18:42:22 +00:00
main section p, main section a {
2022-06-29 14:00:58 +00:00
margin-bottom: 0.5rem;
}
2022-06-15 22:58:50 +00:00
/*
I hate CSS
*/
#experience img {
2022-06-15 22:58:50 +00:00
display: block;
}
#spotify {
display: flex;
flex-direction: column;
}
/*
Gallery
*/
.gallery-image {
2022-06-22 18:42:22 +00:00
margin-bottom: 1rem; padding: 0;
2022-06-15 22:58:50 +00:00
width: 100%; height: 30rem;
object-fit: contain;
2022-06-17 22:21:52 +00:00
display: block;
background-color: var(--bg-dark);
2022-06-15 22:58:50 +00:00
}
.gallery {
margin: 0; padding: 0;
height: 10rem;
display: flex; flex-direction: row;
overflow-x: scroll;
user-select: none;
-ms-overflow-style: none;
scrollbar-width: none;
}
2022-06-17 00:13:50 +00:00
.gallery:hover {
cursor: grab;
}
2022-06-15 22:58:50 +00:00
.gallery::-webkit-scrollbar {
display: none;
}
2022-06-17 00:13:50 +00:00
2022-06-15 22:58:50 +00:00
.gallery img {
margin: 0 0.5rem;
2022-06-25 13:36:08 +00:00
height: 10rem;
max-width: 46%; width: auto;
2022-06-15 22:58:50 +00:00
object-fit: cover;
user-select: none;
2022-06-25 13:36:08 +00:00
transition: transform 0.2s cubic-bezier(0,.76,0,1);
2022-06-15 22:58:50 +00:00
}
.gallery img:hover {
2022-06-25 13:36:08 +00:00
outline: 0.3rem var(--green) solid;
2022-06-15 22:58:50 +00:00
transform: scale(0.9);
}
2022-06-17 00:13:50 +00:00
2022-06-15 22:58:50 +00:00
.gallery img:first-child {
margin-left: 0;
}
.gallery img:last-child {
margin-right: 0;
}
2022-06-17 22:21:52 +00:00
/*
Filter
*/
.filter-list {
margin: 0 0 1rem 0; padding: 0;
width: 100%;
display: flex; flex-direction: row;
justify-content: space-between;
}
.filter-list div {
margin: 0 1rem 0 0; padding: 0.5rem;
width: 15rem; min-width: 8rem;
height: 1.5rem;
display: flex;
justify-content: center; align-items: center;
text-align: center;
background-color: var(--bg-dark);
}
@media (max-width:750px) {
.filter-list {
flex-direction: column;
}
.filter-list div {
margin: 0 0 1rem 0;
width: auto;
}
}
.filter-list div:last-child {
margin: 0;
}