-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f3ba05
commit 5b4c4d8
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', | ||
'Pretendard Variable', Pretendard, Roboto, 'Noto Sans KR', 'Segoe UI', | ||
'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', | ||
sans-serif; | ||
overflow-x: hidden !important; | ||
font-size: $font-size-base; | ||
color: $body-color; | ||
background-color: $body-bg; | ||
} | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6, | ||
.h1, | ||
.h2, | ||
.h3, | ||
.h4, | ||
.h5, | ||
.h6 { | ||
font-family: $font-family-base; | ||
line-height: 1.4; | ||
font-weight: 600; | ||
} | ||
::selection { | ||
background: rgba($primary, 0.9); | ||
color: $white; | ||
} | ||
a { | ||
text-decoration: none !important; | ||
transition: all 0.5s ease; | ||
} | ||
p { | ||
line-height: 1.6; | ||
} | ||
|
||
.four-oh-four { | ||
min-height: calc(100vh - 180px); | ||
@media (max-width: 767px) { | ||
min-height: calc(100vh - 241px); | ||
} | ||
} |