Skip to content

Commit

Permalink
temp: index.css ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
abcxj123 committed Jun 10, 2024
1 parent 1809d8c commit 0b88a49
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
font-family: 'Hana-Heavy';
src:
local('Hana2.0 H'),
url('./assets/fonts/Hana2-Heavy.otf') format('otf'),
url('./assets/fonts/Hana2-Heavy.ttf') format('ttf');
}

@font-face {
font-family: 'Hana-Bold';
src:
local('Hana2.0 B'),
url('https://ddok-bucket.s3.ap-northeast-2.amazonaws.com/fonts/Hana2-Bold.otf')
format('otf'),
url('https://ddok-bucket.s3.ap-northeast-2.amazonaws.com/fonts/Hana2-Bold.ttf')
format('ttf');
}

@font-face {
font-family: 'Hana-CM';
src:
local('Hana2.0 CM'),
url('./assets/fonts/Hana2-CM.otf') format('otf'),
url('./assets/fonts/Hana2-CM.ttf') format('ttf');
}

@font-face {
font-family: 'Hana-Medium';
src:
local('Hana2.0 M'),
url('/assets/fonts/Hana2-Medium.otf') format('otf'),
url('/assets/fonts/Hana2-Medium.ttf') format('ttf');
}

@font-face {
font-family: 'Hana-Regular';
src:
local('Hana2.0 R'),
url('./assets/fonts/Hana2-Regular.otf') format('otf'),
url('./assets/fonts/Hana2-Regular.ttf') format('ttf');
}

@font-face {
font-family: 'Hana-Light';
src:
local('Hana2.0 L'),
url('./assets/fonts/Hana2-Light.otf') format('otf'),
url('./assets/fonts/Hana2-Light.ttf') format('ttf');
}

html,
body {
margin: 0 auto;
padding: 0;
font-size: 10px;
max-width: 500px;
background-color: #e4e4e4;
min-height: 100vh;
}
#root {
margin: 0;
box-sizing: border-box;
max-width: 500px;
background-color: #f2f2f2;
min-height: 100vh;
}
li {
list-style: none;
}
a {
color: inherit;
text-decoration: none;
}
input {
outline: none;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

#news-list::-webkit-scrollbar {
display: none;
}

b {
font-family: 'Hana-Bold';
}

0 comments on commit 0b88a49

Please sign in to comment.