author.blade.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: #fff;
  14. }
  15. .dashboard-title h1 {
  16. font-weight: 200;
  17. font-size: 2.5rem;
  18. }
  19. .dashboard-title .avatar {
  20. background: #fff;
  21. border: 2px solid #fff;
  22. width: 70px;
  23. height: 70px;
  24. }
  25. </style>
  26. <div class="dashboard-title card bg-primary">
  27. <div class="card-body">
  28. <div class="text-center ">
  29. <img class="avatar img-circle shadow mt-1" src="https://m.saishiyun.net/imgpic/work-photo.png">
  30. <div class="text-center mb-1">
  31. <div class="mb-1 mt-1 text-white">微信号:Q3664839</div>
  32. <h1 class="mb-1 mt-1 text-white">杨光</h1>
  33. <div class="links">
  34. <a href="https://www.saishiyun.net" target="_blank">个人博客</a>
  35. {{--<a href="http://www.dcatadmin.com/" id="doc-link" target="_blank">{{ __('admin.documentation') }}</a>
  36. <a href="http://www.dcatadmin.com/" id="demo-link" target="_blank">{{ __('admin.extensions') }}</a>
  37. <a href="https://jqhph.github.io/dcat-admin/demo.html" id="demo-link" target="_blank"></a>--}}
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>