| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,100 @@ |
| 1 |
+@if not-imported("import_once_func") { @import "import_once_func"; }
|
|
| 2 |
+@if not-imported("framework") { @import "framework"; }
|
|
| 3 |
+ |
|
| 4 |
+/* |
|
| 5 |
+ ------ CONTENT ------ |
|
| 6 |
+*/ |
|
| 7 |
+#container {
|
|
| 8 |
+ padding: 0; |
|
| 9 |
+ position: relative; |
|
| 10 |
+ z-index: 1; |
|
| 11 |
+ background: $color-white; |
|
| 12 |
+} |
|
| 13 |
+ |
|
| 14 |
+#main {
|
|
| 15 |
+ @include box-sizing(border-box); |
|
| 16 |
+ |
|
| 17 |
+ .mod_article {
|
|
| 18 |
+ //padding: 20px 0; |
|
| 19 |
+ |
|
| 20 |
+ &:first-child:not(.alternate) {
|
|
| 21 |
+ padding-top: 0; |
|
| 22 |
+ } |
|
| 23 |
+ &:last-child:not(.alternate) {
|
|
| 24 |
+ padding-bottom: 0; |
|
| 25 |
+ } |
|
| 26 |
+ |
|
| 27 |
+ &.alternate {
|
|
| 28 |
+ background-color: $color-bg-senary; |
|
| 29 |
+ padding-left: 80px; |
|
| 30 |
+ padding-right: 80px; |
|
| 31 |
+ |
|
| 32 |
+ &:first-child {
|
|
| 33 |
+ //margin-top: -20px; |
|
| 34 |
+ } |
|
| 35 |
+ |
|
| 36 |
+ &:last-child {
|
|
| 37 |
+ margin-bottom: -20px; |
|
| 38 |
+ } |
|
| 39 |
+ |
|
| 40 |
+ @include for-tablet {
|
|
| 41 |
+ padding-left: 40px; |
|
| 42 |
+ padding-right: 40px; |
|
| 43 |
+ } |
|
| 44 |
+ |
|
| 45 |
+ @include for-mobile {
|
|
| 46 |
+ padding-left: 20px; |
|
| 47 |
+ padding-right: 20px; |
|
| 48 |
+ } |
|
| 49 |
+ } |
|
| 50 |
+ } |
|
| 51 |
+} |
|
| 52 |
+ |
|
| 53 |
+#breadcrumb {
|
|
| 54 |
+ @include centered-1200; |
|
| 55 |
+ -webkit-box-sizing: border-box; |
|
| 56 |
+ -moz-box-sizing: border-box; |
|
| 57 |
+ box-sizing: border-box; |
|
| 58 |
+ /*position: absolute; |
|
| 59 |
+ top: 14px; |
|
| 60 |
+ left: 0; |
|
| 61 |
+ right: 0;*/ |
|
| 62 |
+ margin: -46px auto 19px; |
|
| 63 |
+ font-size: font-size(14px); |
|
| 64 |
+ line-height: 1; |
|
| 65 |
+ padding: 0 0 5px; |
|
| 66 |
+ color: $color-text-breadcrumb; |
|
| 67 |
+ border-bottom: 1px $color-stroke-grey solid; |
|
| 68 |
+ ul {
|
|
| 69 |
+ margin: 0; |
|
| 70 |
+ padding: 0; |
|
| 71 |
+ //white-space: nowrap; |
|
| 72 |
+ } |
|
| 73 |
+ |
|
| 74 |
+ li {
|
|
| 75 |
+ display: inline-block; |
|
| 76 |
+ line-height: 1.5; |
|
| 77 |
+ margin-right: 1px; |
|
| 78 |
+ |
|
| 79 |
+ &:before {
|
|
| 80 |
+ @include iconfont; |
|
| 81 |
+ font-size: inherit; |
|
| 82 |
+ display: inline-block; |
|
| 83 |
+ line-height: inherit; |
|
| 84 |
+ margin-right: 2px; |
|
| 85 |
+ content: "\e907"; |
|
| 86 |
+ vertical-align: -0.1em; |
|
| 87 |
+ } |
|
| 88 |
+ |
|
| 89 |
+ &:first-child {
|
|
| 90 |
+ &:before {
|
|
| 91 |
+ display: none; |
|
| 92 |
+ } |
|
| 93 |
+ } |
|
| 94 |
+ |
|
| 95 |
+ a {
|
|
| 96 |
+ display: inline; |
|
| 97 |
+ } |
|
| 98 |
+ } |
|
| 99 |
+} |
|
| 100 |
+ |