응 넥제로 갈아타면 그만이야~

This commit is contained in:
imnyang 2024-11-24 23:50:41 +09:00
commit b8c25c35b4
34 changed files with 460 additions and 9725 deletions

94
src/app/globals.css Normal file
View file

@ -0,0 +1,94 @@
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
}
body {
color: rgba(255, 255, 255, 0.87);
background-color: #262225;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: flex;
min-height: 100vh;
}
#__next {
flex: 1;
display: flex;
flex-direction: column;
width: 100%;
}
a {
font-weight: 500;
color: #ffe7fb;
text-decoration: inherit;
}
a:hover {
color: #ffe7fb;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #ffe7fb;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
width: 10px;
height: 11px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgb(65, 66, 68);
border: 1px solid rgb(29, 30, 32);
border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(155, 156, 157);
}