42 lines
513 B
CSS
42 lines
513 B
CSS
@font-face {
|
|
font-family: rockSalt;
|
|
src: url("/rockSalt.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: doHyeon;
|
|
src: url("/doHyeon.ttf");
|
|
}
|
|
|
|
.special-text {
|
|
font-family: rockSalt;
|
|
}
|
|
|
|
.logo-font {
|
|
font-family: doHyeon;
|
|
}
|
|
|
|
.dark-primary {
|
|
color: #272838;
|
|
}
|
|
|
|
.dark-primary-bg {
|
|
background-color: #272838;
|
|
}
|
|
|
|
.blue-primary {
|
|
color: #3993DD;
|
|
}
|
|
|
|
.blue-primary-bg {
|
|
background-color: #3993DD;
|
|
}
|
|
|
|
.orange-primary-bg {
|
|
background-color: #F46036;
|
|
}
|
|
|
|
.orange-primary {
|
|
color: #F46036;
|
|
}
|