This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .selector { | |
| font-feature-settings: "palt" 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| filter: drop-shadow(0px 0px 10px rgba(0,0,0,.8)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .box { | |
| position: relative; | |
| width: 50%; | |
| height: auto; | |
| background: #444; | |
| } | |
| .ratio-1_1:before { | |
| content: ""; | |
| display: block; | |
| padding-top: 100%; /* 1:1 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| width: 100wh; | |
| height: 90vh; | |
| color: #fff; | |
| background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); | |
| background-size: 400% 400%; | |
| -webkit-animation: Gradient 15s ease infinite; | |
| -moz-animation: Gradient 15s ease infinite; | |
| animation: Gradient 15s ease infinite; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .boxA { | |
| @include link-colors(#111, #222, #333, #444, #555); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .child { | |
| display:inline-block; | |
| font-family: Arial; | |
| font-weight: bold; | |
| color: white; | |
| font-size: 1.5em; | |
| text-align: center; | |
| } | |
| .parent.one { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="target">aaaaa</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package.jsonにないプラグインを削除 | |
| npm prune | |
| package.jsonと同じプラグインをインストール | |
| npm install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span class="priceBox">3,990</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .fadeinTp01{ | |
| opacity : 0.1; | |
| transform : translate(0, 50px); | |
| transition : all 500ms; | |
| } | |
| .fadeinTp01.scrollin { | |
| opacity : 1; | |
| transform : translate(0, 0); | |
| } |
NewerOlder