app/template/default/Block/navigation_menu.twig line 1

Open in your IDE?
  1. {% block stylesheet %}
  2.     <style>
  3.         .ec-topicRole_new_nav {
  4.             padding: unset;
  5.             background: #2479E8;
  6.         }
  7.         .categoryRole__list_new {
  8.             padding: 15px 0;
  9.         }
  10.         .listItem_new_nav {
  11.             border-left: 1px solid #fff;
  12.             margin: unset !important;
  13.         }
  14.         .listItem_new_nav:last-child {
  15.             border-right: 1px solid #fff;
  16.         }
  17.         .listItem_new {
  18.             font-family: "Roboto", "ヒラギノ角ゴ ProN", "メイリオ", "sans-serif";
  19.             font-style: normal;
  20.             font-weight: 300;
  21.             font-size: 15px;
  22.             line-height: 24px;
  23.             text-align: center;
  24.             color: #FFFFFF;
  25.         }
  26.         .ec-role-sp {
  27.             width: 68%;
  28.         }
  29.         .ec-footerNavi .ec-footerNavi__link a {
  30.             font-family: "Roboto", "ヒラギノ角ゴ ProN", "メイリオ", "sans-serif";
  31.             font-style: normal;
  32.             font-weight: 300;
  33.             font-size: 13px;
  34.             line-height: 19px;
  35.             text-align: center;
  36.             color: #FFFFFF;
  37.         }
  38.         @media screen and (max-width: 768px) {
  39.             .ec-topicRole_new_nav {
  40.                 display: none;
  41.             }
  42.         }
  43.     </style>
  44. {% endblock %}
  45. <div class="ec-categoryRole ec-topicRole_new_nav">
  46.     <div class="ec-role ec-role-sp">
  47.         <div class="ec-categoryRole__list text-center categoryRole__list_new">
  48.             <div class="ec-categoryRole__listItem listItem_new_nav">
  49.                 <a href="{{ path('guide') }}">
  50.                     <div class="listItem_new">初めての方へ</div>
  51.                 </a>
  52.             </div>
  53.             <div class="ec-categoryRole__listItem listItem_new_nav">
  54.                 <a href="{{ path('faq') }}">
  55.                     <div class="listItem_new">FAQ</div>
  56.                 </a>
  57.             </div>
  58.             <div class="ec-categoryRole__listItem listItem_new_nav">
  59.                 <a href="{{ path('contact_emergency') }}">
  60.                     <div class="listItem_new">お急ぎの方へ</div>
  61.                 </a>
  62.             </div>
  63.         </div>
  64.     </div>
  65. </div>