Skip to content
29 changes: 29 additions & 0 deletions css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
:root {
/* Primary color */
--blue100: #3692FF;
--blue200: #1967D6;
--blue300: #1251AA;

/* Secondary color */
--gray900: #111827;
--gray800: #1f2937;
--gray700: #374151;
--gray600: #4b5563;
--gray500: #6b7280;
--gray400: #6b7280;
--gray200: #e5e7eb;
--gray100: #f3f4f6;
--gray50: #f9fafb;

/* Error */
--red: #F74747;

/* inactive */
--inactive: #9ca3af;

/* normal */
--gray: #fcfcfc;
--white: #ffffff;
--nav: #dfdfdf;
--banner: #cfe5ff;
}
36 changes: 36 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* 전체 초기화 */
* {
top: 0;
bottom: 0;
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
font-family: "Pretendard Variable", sans-serif;
font-size: 16px; /* Base font size */
}

/* 기본 스타일 초기화 */
a {
text-decoration: none;
}

.main-btn,
button {
cursor: pointer;
}

.main-btn:hover,
button:hover {
background: var(--blue200);
}

.main-btn:active,
button:active {
background: var(--blue300);
}

.main-btn:disabled,
button:disabled {
background: var(--inactive);
}
Loading
Loading