/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
<style>
ul[role="menu"] {
  list-style: none; /* ブレットポイントを削除 */
  padding: 0; /* パディングをリセット */
}

ul[role="menu"] li {
  display: inline-block; /* 横並びにする */
  margin-right: 15px; /* 右側に余白を追加 */
}

ul[role="menu"] li:last-child {
  margin-right: 0; /* 最後の要素の余白をリセット */
}
</style>