149 lines
2.9 KiB
CSS
149 lines
2.9 KiB
CSS
@import url("/index/css/reset.css");
|
|
@import url("/index/css/system.css");
|
|
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
|
|
html {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
-webkit-user-drag: none;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
background-image: url(/index/img-jangheon/image__jangheon-background.jpg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
width: 100dvw;
|
|
height: 100dvh;
|
|
}
|
|
|
|
.header {
|
|
/* position: fixed;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: 100dvw;
|
|
padding: 0.5rem 1rem;
|
|
min-height: 2.25rem;
|
|
max-height: 2.25rem;
|
|
top: 0;
|
|
background: rgba(17, 17, 17, 0.4);
|
|
-webkit-backdrop-filter: blur(0.5rem);
|
|
backdrop-filter: blur(0.5rem); */
|
|
|
|
background: rgba(17, 17, 17, 0.4);
|
|
-webkit-backdrop-filter: blur(0.5rem);
|
|
backdrop-filter: blur(0.5rem);
|
|
width: 100vw;
|
|
height: 2.25rem;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 1rem;
|
|
position: fixed;
|
|
z-index: 3;
|
|
top: 0;
|
|
pointer-events: all;
|
|
gap: 0.825rem;
|
|
}
|
|
|
|
.--logo__project-master {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
font-family: "Aldrich";
|
|
color: #fff;
|
|
}
|
|
|
|
.header__logo {
|
|
height: 2.25rem;
|
|
}
|
|
|
|
.header__logo-img {
|
|
height: 2.25rem;
|
|
}
|
|
|
|
.main {
|
|
width: 100dvw;
|
|
position: absolute;
|
|
top: 2.25rem;
|
|
padding: 1rem;
|
|
}
|
|
.li-cover {
|
|
width: 30rem;
|
|
}
|
|
.main__project-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
height: calc(100dvh - 4.5rem);
|
|
}
|
|
.main__project-item {
|
|
background: rgba(17, 17, 17, 0.4);
|
|
-webkit-backdrop-filter: blur(0.5rem);
|
|
backdrop-filter: blur(0.5rem);
|
|
padding: 0.875rem;
|
|
border-radius: 1rem;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
-moz-column-break-inside: avoid;
|
|
break-inside: avoid;
|
|
transition: all 0.125s ease-in-out;
|
|
/* width: 30rem; */
|
|
}
|
|
.main__project-item:hover {
|
|
cursor: pointer;
|
|
background: #fff;
|
|
color: #111;
|
|
}
|
|
.main__icon--s-icon__jangheon-symbol--aaa {
|
|
height: 1.25rem;
|
|
}
|
|
.main__project-label {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100dvw;
|
|
padding: 0.5rem 1rem;
|
|
min-height: 2.25rem;
|
|
max-height: 2.25rem;
|
|
bottom: 0;
|
|
background: rgba(17, 17, 17, 0.4);
|
|
-webkit-backdrop-filter: blur(0.5rem);
|
|
backdrop-filter: blur(0.5rem);
|
|
}
|
|
.footer__manage {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.125rem;
|
|
}
|
|
.footer__manager {
|
|
color: #aaa;
|
|
}
|
|
.footer__debug {
|
|
color: #aaa;
|
|
text-decoration: underline;
|
|
font-size: 0.75rem;
|
|
font-weight: 300;
|
|
line-height: 1.25rem;
|
|
letter-spacing: -0.0175rem;
|
|
}
|
|
.footer__debug:hover {
|
|
color: #fff;
|
|
}
|
|
.footer__copyright {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
.footer__copyright-text {
|
|
color: #aaa;
|
|
min-width: -moz-fit-content;
|
|
min-width: fit-content;
|
|
} |