index.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. $this->title = 'Rageframe For html5';
  3. ?>
  4. <style>
  5. html, body {
  6. background-color: #fff;
  7. color: #636b6f;
  8. font-family: 'Raleway', sans-serif;
  9. font-weight: 100;
  10. height: 100vh;
  11. margin: 0;
  12. }
  13. .full-height {
  14. height: 100vh;
  15. }
  16. .flex-center {
  17. align-items: center;
  18. display: flex;
  19. justify-content: center;
  20. }
  21. .position-ref {
  22. position: relative;
  23. }
  24. .top-right {
  25. position: absolute;
  26. right: 10px;
  27. top: 18px;
  28. }
  29. .content {
  30. text-align: center;
  31. }
  32. .title {
  33. font-size: 84px;
  34. }
  35. .links > a {
  36. color: #636b6f;
  37. padding: 0 25px;
  38. font-size: 12px;
  39. font-weight: 600;
  40. letter-spacing: .1rem;
  41. text-decoration: none;
  42. text-transform: uppercase;
  43. }
  44. .m-b-md {
  45. margin-bottom: 30px;
  46. }
  47. </style>
  48. <div class="flex-center position-ref full-height">
  49. <div class="content">
  50. <div class="title m-b-md">
  51. html5
  52. </div>
  53. <div class="links">
  54. <a href="#">欢迎进入手机应用</a>
  55. </div>
  56. </div>
  57. </div>
粤ICP备19079148号