|
|
@@ -1,3 +1,10 @@
|
|
|
+// Font Awesome
|
|
|
+$fa-font-path: "@fortawesome/fontawesome-free/webfonts";
|
|
|
+@import '@fortawesome/fontawesome-free/scss/fontawesome';
|
|
|
+@import '@fortawesome/fontawesome-free/scss/regular';
|
|
|
+@import '@fortawesome/fontawesome-free/scss/solid';
|
|
|
+@import '@fortawesome/fontawesome-free/scss/brands';
|
|
|
+
|
|
|
html {
|
|
|
scrollbar-width: auto;
|
|
|
scrollbar-color: hsla(0, 0%, 53%, .5) #585858;
|
|
|
@@ -11,20 +18,19 @@ input[type="number"]::-webkit-inner-spin-button {
|
|
|
margin: 0;
|
|
|
}
|
|
|
|
|
|
+label {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
a {
|
|
|
text-decoration: none;
|
|
|
|
|
|
&:hover,
|
|
|
- &:focus,
|
|
|
- &:active {
|
|
|
+ &:focus {
|
|
|
text-decoration: underline;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-label {
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
-
|
|
|
/* 기본 버튼 */
|
|
|
.btn-default {
|
|
|
display: inline-block;
|
|
|
@@ -148,3 +154,23 @@ label {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.pagination {
|
|
|
+ justify-content: center;
|
|
|
+ padding: 10px 0 20px 0;
|
|
|
+
|
|
|
+ ul {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+
|
|
|
+ li {
|
|
|
+ a {
|
|
|
+ &:hover,
|
|
|
+ &:focus,
|
|
|
+ &:active {
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|