Welcome.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div class="flex-center position-ref full-height">
  3. <div class="content">
  4. <div class="m-b-md">
  5. <h2 class="title m-b-md">
  6. UPCCRT
  7. </h2>
  8. <h3>
  9. University PC Care Repair Tracker
  10. </h3>
  11. </div>
  12. </div>
  13. </div>
  14. </template>
  15. <style scoped>
  16. .full-height {
  17. height: 100vh;
  18. }
  19. .flex-center {
  20. align-items: center;
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .position-ref {
  25. position: relative;
  26. }
  27. .top-right {
  28. position: absolute;
  29. right: 10px;
  30. top: 18px;
  31. }
  32. .content {
  33. text-align: center;
  34. }
  35. .title {
  36. font-size: 60px;
  37. }
  38. .links > a {
  39. color: #636b6f;
  40. padding: 0 25px;
  41. font-size: 12px;
  42. font-weight: 600;
  43. letter-spacing: .1rem;
  44. text-decoration: none;
  45. text-transform: uppercase;
  46. }
  47. .m-b-md {
  48. margin-bottom: 30px;
  49. color: #000000;
  50. }
  51. </style>
  52. <script>
  53. export default {}
  54. </script>