Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

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.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <script src="https://kit.fontawesome.com/b1e81adc1e.js" crossorigin="anonymous"></script>

<ul class="snsbtniti">

        <li><a href="https://twitter.com/sinjotigers" class="flowbtn4 fl_tw2">
                  <i class="fab fa-twitter"></i><div>Twitter</div></a></li>

        <li><a href="https://www.instagram.com/sinjotigers/" class="flowbtn4 insta_btn2">
                  <i class="fab fa-instagram"></i><div>Instagram</div></a></li>

        <li><a href="https://www.youtube.com/user/sinjonrp/featured" class="flowbtn4 fl_yu2">
                  <i class="fab fa-youtube"></i><div>YouTube</div></a></li>

</ul>
              
            
!

CSS

              
                /* ボタン全体の装飾 */
.flowbtn4{
font-family:'Trebuchet MS',sans-serif;/* 好きなフォントに変えてね */
border-radius:50%;
display:inline-block;
width:70px;
height:70px;
font-size:30px;
transition:.5s;
text-decoration:none;
}
/* ボタンマウスホバー時テキストカラー */
.flowbtn4:hover{
color:#fff!important;
}
/* Twitter */
.flowbtn4.fl_tw2{
border:solid 1px #55acee;
color:#55acee;
}
/* Twitterマウスホバー時 */
.flowbtn4.fl_tw2:hover{
border:solid 1px #55acee;
background:#55acee;
}
/* Instagram */
.flowbtn4.insta_btn2 {
border:solid 1px #c6529a;
color:#c6529a;
}
/* Instagramマウスホバー時 */
.flowbtn4.insta_btn2:hover{
border:solid 1px #c6529a;
background:#c6529a;
}

/* YouTube */
.flowbtn4.fl_yu2{
border:solid 1px #fc0d1c;
color:#fc0d1c;
}
/* YouTubeマウスホバー時 */
.flowbtn4.fl_yu2:hover{
border:solid 1px #fc0d1c;
background:#fc0d1c;
}
/* ボタン内テキスト調整 */
.flowbtn4 div{
font-size:11px;	
font-weight:bold;
position:relative;
bottom:0px;		
}
.fab{
	margin-top:10px;
}
/* ボタンの位置 */
.snsbtniti{
display:flex;
flex-flow:row wrap;
justify-content:flex-end;
padding-right:50px;
}
/* ボタン同士の余白 */
.snsbtniti li{
	text-align:center;
	letter-spacing:0em;
	padding-right:10px;
  list-style-type:none;
}
@media screen and (max-width:568px){
	.snsbtniti{
	padding-right:10px;
}
.flowbtn4{
	width:60px;
	height:60px;
}
.flowbtn4 div{
	display:none;
}
.fab{
	margin-top:15px;
}
}
              
            
!

JS

              
                
              
            
!
999px

Console