Skip to content

Instantly share code, notes, and snippets.

@atenami
Last active August 21, 2017 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atenami/6c00b153d33b7449f5ead097cdc21120 to your computer and use it in GitHub Desktop.
Save atenami/6c00b153d33b7449f5ead097cdc21120 to your computer and use it in GitHub Desktop.
<!-- グローバルメニュー -->
<div id="mobile_menu">
<span class="category"><a href="URLを記入">名前1</a></span>
|
<span class="category"><a href="URLを記入">名前2</a></span>
|
<span class="category"><a href="URLを記入">名前3</a></span>
|
<span class="category"><a href="URLを記入">名前4</a></span>
</div>
<style>
#mobile_menu{
color: #ffffff;
text-align: center;
background-color: #f08080;/*背景色*/
margin:10px 0 0 0;
border:1px solid #ffffff;/*囲い線*/
}
#mobile_menu .category{
padding:10px 0 10px 0;
line-height: 200%;
font-size: 85%;/*文字の大きさ*/
font-weight: bold;
}
#mobile_menu a{
color: #ffffff;
text-decoration: none;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment