custom.scss 1.15 KB
Newer Older
1
2
$crimson : #DC143C;

Kim, Subin's avatar
Kim, Subin committed
3
4
@import "../../node_modules/bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
5
6
7
8
9
10
11
@import "~bootstrap/scss/mixins";

$custom-colors: (
    "crimson": $crimson
);
    
$theme-colors: map-merge($theme-colors, $custom-colors);
Kim, Subin's avatar
Kim, Subin committed
12

13
14
@import '~bootstrap/scss/bootstrap.scss';
@import '~bootstrap-icons/font/bootstrap-icons'; 
Kim, Subin's avatar
Kim, Subin committed
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

@font-face {
    font-family: "Plex-Bold";
    src: url("../fonts/IBMPlexSansKR-Bold.ttf");
}

@font-face {
    font-family: "Plex-SemiBold";
    src: url("../fonts/IBMPlexSansKR-SemiBold.ttf");
}

@font-face {
    font-family: "Plex-Medi";
    src: url("../fonts/IBMPlexSansKR-Medium.ttf");
}

@font-face {
    font-family: "Plex-Reg";
    src: url("../fonts/IBMPlexSansKR-Regular.ttf");
}

@font-face {
    font-family: "Plex-Light";
    src: url("../fonts/IBMPlexSansKR-Light.ttf");
}

@font-face {
    font-family: "Plex-ExtraLight";
    src: url("../fonts/IBMPlexSansKR-ExtraLight.ttf");
}

@font-face {
    font-family: "Plex-Text";
    src: url("../fonts/IBMPlexSansKR-Text.ttf");
}

51
h1, h2, h3, h4, h5, h6, label {
Kim, Subin's avatar
Kim, Subin committed
52
    font-family: "Plex-Bold";
53
54
55
56
57
58
}

@include media-breakpoint-up(sm) {
    #box {
        width: 400px;
    }
Kim, Subin's avatar
Kim, Subin committed
59
}