custom.scss 3.54 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
$ButterYellow: #FEDC00;

@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";

$custom-colors: (
    "ButterYellow": $ButterYellow
);
    
$theme-colors: map-merge($theme-colors, $custom-colors);

13
@import '~bootstrap/scss/bootstrap.scss';
Kim, Subin's avatar
Kim, Subin committed
14
15
@import '~bootstrap-icons/font/bootstrap-icons'; 

Kim, Subin's avatar
Kim, Subin committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@font-face {
    font-family: 'HangeulNuriB';
    src: url("../fonts/HangeulNuriB.ttf") format('truetype')
}

@font-face {
    font-family: 'HangeulNuriR';
    src: url("../fonts/HangeulNuriR.ttf") format('truetype')
}

* {
    font-family: "HangeulNuriB"
}

Jiwon Yoon's avatar
Jiwon Yoon committed
30
31
32
33
34
35
// .carousel-inner .carousel-item.active,
// .carousel-inner .carousel-item-next,
// .carousel-inner .carousel-item-prev {
//     display: flex;
//     justify-content: center;
// }
Kim, Subin's avatar
Kim, Subin committed
36

한규민's avatar
한규민 committed
37
38
39
40
41
42
43
@font-face {
  font-family: 'HangeulNuri-Bold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_three@1.0/HangeulNuri-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

Kim, Subin's avatar
Kim, Subin committed
44
@media (max-width: 767px) {
45
46
47
48
49
50
51
52
53
54
    // .carousel-inner .carousel-item > div {
    //     display: none;
    // }
    // .carousel-inner .carousel-item > div:first-child {
    //     display: block;
    // }
    .table > :not(caption) > * > * {
        border-bottom-width: 0;
    }
}
Kim, Subin's avatar
Kim, Subin committed
55

Jiwon Yoon's avatar
Jiwon Yoon committed
56
57
// /* medium and up screens */
// @media (min-width: 768px) {
Kim, Subin's avatar
Kim, Subin committed
58
    
Jiwon Yoon's avatar
Jiwon Yoon committed
59
60
61
62
//     .carousel-inner .carousel-item-end.active,
//     .carousel-inner .carousel-item-next {
//       transform: translateX(25%);
//     }
Kim, Subin's avatar
Kim, Subin committed
63
    
Jiwon Yoon's avatar
Jiwon Yoon committed
64
65
66
67
68
//     .carousel-inner .carousel-item-start.active, 
//     .carousel-inner .carousel-item-prev {
//       transform: translateX(-25%);
//     }
// }
Kim, Subin's avatar
Kim, Subin committed
69

Jiwon Yoon's avatar
Jiwon Yoon committed
70
71
72
// .carousel-inner .carousel-item-end,
// .carousel-inner .carousel-item-start { 
//   transform: translateX(0);
Kim, Subin's avatar
Kim, Subin committed
73
74
75
76
77
78
79
80
81
// }

.page-item.active .page-link {
    background-color: #FEDC00;
    border-color: #FEDC00;
}

.page-link:hover, .page-link:focus {
    background-color: #fff;
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
}

#notfound {
    position: relative;
    height: 100vh;
}
  
#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
  
.notfound {
    max-width: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1;
}
  
.notfound .notfound-404 {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 140px;
    height: 140px;
    background-size: cover;
}
  
.notfound .notfound-404:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(2.4);
        -ms-transform: scale(2.4);
            transform: scale(2.4);
    border-radius: 50%;
    background-color: #f2f5f8;
    z-index: -1;
}
  
.notfound h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #151723;
    text-transform: uppercase;
}
  
.notfound h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 21px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    color: #151723;
}
  
.notfound p {
    font-family: 'Nunito', sans-serif;
    color: #999fa5;
    font-weight: 400;
}
  
.notfound a {
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    color: #388dbc;
}
  
@media screen and (max-width: 767px) {
    .notfound .notfound-404 {
      width: 110px;
      height: 110px;
    }

    .notfound {
      padding-left: 15px;
      padding-right: 15px;
      padding-top: 110px;
    }
Kim, Subin's avatar
Kim, Subin committed
173
}