JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
<div class="wrap">
<div class="lud-20 lud">
<p class="sub-title">20. しかし、重要なアクションを促すときは、赤色を利用しましょう。</p>
<p>「削除」など重要なアクションに赤色を利用しなければ、ユーザーは心配の恐れがないと考えてしまうでしょう。</p>
<p>If you don't use a color like red for confirming a high severity action user may think there's no danger in it.</p>
<div class="ex-20 example">
<p>本当に削除してよろしいですか。</p>
<div>
<button class="b-1">取り消し</button>
<button class="b-2">削除する</button>
</div>
</div>
</div>
</div>
*{
margin: 0;
outline: 0;
box-sizing: border-box;
font-family: 'Segoe UI', 'Open Sans', 'Roboto',YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Roboto, メイリオ, Meiryo, "MS Pゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}
.wrap{
margin: 2rem auto 0;
width: 90%;
max-width: 48rem;
}
h1{
font-weight: normal;
margin-bottom: 2rem;
}
.wrap p{
font-size: 1.125rem;
color: #444;
line-height: 2;
margin-bottom: 1rem;
}
.wrap a{
color: #4687c9;
}
.wrap p.sub-title{
font-size: 1.5rem;
color: #222;
margin-bottom: 1rem;
line-height: 1.5;
}
.lud{
margin: 4rem 0 4rem;
}
.lud p:nth-child(3){
font-size: 12px;
font-style: italic;
}
.example{
margin-top: 2.5rem;
}
/* サンプル用スタイリング */
.ex-20{
background: #f1f1f1;
padding: 2rem;
text-align: center;
}
.ex-20 button{
border: none;
padding: .875rem 2rem;
border-radius: 5px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
}
.ex-20 .b-1{
border: 2px solid #aaa;
background: transparent;
color: #444;
}
.ex-20 .b-1:hover{
background: #ddd;
color: #222;
}
.ex-20 .b-2{
border: 2px solid hsl(348, 95%, 60%);
background: hsl(348, 95%, 60%);
color: #fff;
margin-left: 1rem;
}
.ex-20 .b-2:hover{
border: 2px solid hsl(348, 70%, 48%);
background: hsl(348, 70%, 48%);
}
Also see: Tab Triggers