common
5 years ago
inc
5 years ago
_mixin.scss
5 years ago
common.scss
5 years ago
post.scss
5 years ago
ssp.scss
5 years ago
term.scss
5 years ago
term.scss
33 lines
| 1 | @charset "UTF-8"; |
| 2 | |
| 3 | $color_main : #87ab87; |
| 4 | |
| 5 | .form-table .ssp_term_meta_title td { |
| 6 | padding-left: 0; |
| 7 | } |
| 8 | |
| 9 | .ssp_term_meta_title h2 { |
| 10 | |
| 11 | position: relative; |
| 12 | padding: 8px 0 8px 16px; |
| 13 | line-height: 1.5; |
| 14 | // letter-spacing: 0.5px; |
| 15 | |
| 16 | &::before { |
| 17 | position: absolute; |
| 18 | top: 50%; |
| 19 | left: 0; |
| 20 | z-index: -1; |
| 21 | display: block; |
| 22 | width: 40px; |
| 23 | height: 40px; |
| 24 | // background-color: $color_main; |
| 25 | background-image: linear-gradient(-45deg, transparent 25%, $color_main 25%, $color_main 50%, transparent 50%, transparent 75%, $color_main 75%, $color_main); |
| 26 | background-size: 6px 6px; |
| 27 | border-radius: 50%; |
| 28 | transform: translateY(-50%); |
| 29 | opacity: 0.4; |
| 30 | content: ""; |
| 31 | } |
| 32 | } |
| 33 |