vendor/kunstmaan/admin-bundle/Resources/views/Default/_css.html.twig line 1

Open in your IDE?
  1. <link rel="stylesheet" href="{{ asset('bundles/kunstmaanadmin/default-theme/ckeditor/plugins/notification/css/notification.css') }}">
  2. <link rel="stylesheet" href="{{ asset('bundles/kunstmaanadmin/default-theme/ckeditor/plugins/wordcount/css/wordcount.css') }}">
  3. <link rel="stylesheet" href="{{ asset('bundles/kunstmaanadmin/css/style.css') }}">
  4. <!-- Customizable Brand Color -->
  5. {% if titlecolor is not defined or titlecolor is empty %}
  6.     {% set titlecolor = "#fff" %}
  7. {% endif %}
  8. {% if titlebgcolor is not defined or titlebgcolor is empty %}
  9.     {% set titlebgcolor = "#2997ce" %}
  10. {% endif %}
  11. <style type="text/css">
  12.     .app__header__brand, .app__header__brand:hover, .app__header__brand:focus, .navbar-inverse .app__header__brand, .navbar-inverse .app__header__brand:hover, .navbar-inverse .app__header__brand:focus, .btn-brand, .btn-brand:hover, .btn-brand:focus {
  13.         color: {{ titlecolor }};
  14.         background: {{ titlebgcolor }};
  15.     }
  16.     header .navbar .app__header__brand:after {
  17.         border-left-color: {{ titlebgcolor }};
  18.     }
  19.     .login {
  20.         background: {{ titlebgcolor }};
  21.     }
  22.     .login__title, .login__form__forgot-pw, .login__form__forgot-pw:hover {
  23.         color: {{ titlecolor }};
  24.     }
  25. </style>
  26. {% include "@KunstmaanAdmin/Default/_css_extra.html.twig" %}