title.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <style>
  2. .dashboard-title .links {
  3. text-align: center;
  4. margin-bottom: 2.5rem;
  5. }
  6. .dashboard-title .links > a {
  7. padding: 0 25px;
  8. font-size: 12px;
  9. font-weight: 600;
  10. letter-spacing: .1rem;
  11. text-decoration: none;
  12. text-transform: uppercase;
  13. color: rgba(255, 255, 255, 0.7);
  14. }
  15. .dashboard-title .links > a:hover {
  16. color: #fff;
  17. }
  18. .dashboard-title h1 {
  19. font-weight: 200;
  20. font-size: 2.5rem;
  21. }
  22. .dashboard-title.card {
  23. background: {{ Admin::color()->alpha('primary', 0.95) }}
  24. }
  25. .dashboard-title .avatar {
  26. background: #fff;
  27. border: 2px solid #fff;
  28. width: 70px;
  29. height: 70px;
  30. }
  31. </style>
  32. <div class="dashboard-title card">
  33. <div class="card-body">
  34. <div class="text-center ">
  35. <img class="avatar img-circle shadow mt-1" src="{{ admin_asset('@admin/images/logo.png') }}">
  36. <div class="text-center mb-1">
  37. <h1 class="mb-3 mt-2 text-white">Dcat Admin</h1>
  38. <div class="links">
  39. <a href="https://github.com/jqhph/dcat-admin" target="_blank">Github</a>
  40. <a href="https://jqhph.github.io/dcat-admin/docs.html" id="doc-link" target="_blank">{{ __('admin.documentation') }}</a>
  41. <a href="https://jqhph.github.io/dcat-admin/docs/master/extensions.html" id="demo-link" target="_blank">{{ __('admin.extensions') }}</a>
  42. <a href="https://jqhph.github.io/dcat-admin/demo.html" id="demo-link" target="_blank">{{ __('admin.demo') }}</a>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>