Title.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <LayoutContainer>
  3. <div class="container-title">
  4. <v-col cols="3" class="lateral-text">
  5. <span>
  6. <slot name="left-text"/>
  7. </span>
  8. </v-col>
  9. <v-col cols="6">
  10. <h1>
  11. <slot />
  12. </h1>
  13. </v-col>
  14. <v-col cols="3" class="lateral-text">
  15. <span>
  16. <slot name="right-text" />
  17. </span>
  18. </v-col>
  19. </div>
  20. </LayoutContainer>
  21. </template>
  22. <style scoped lang="scss">
  23. .container-title {
  24. display: flex;
  25. justify-content: space-around;
  26. line-height: 16px;
  27. align-items: center;
  28. text-align: center;
  29. letter-spacing: 0.18em;
  30. border-bottom: 0.1rem solid var(--on-neutral-color-extra-light);
  31. }
  32. h1 {
  33. font-size: 72px;
  34. line-height: 77px;
  35. color: var(--on-neutral-color);
  36. text-align: center;
  37. }
  38. .lateral-text {
  39. position: absolute;
  40. font-weight: 600;
  41. font-size: 72px;
  42. line-height: 85px;
  43. opacity: 0.08;
  44. margin-top: 2rem;
  45. margin-bottom: 2rem;
  46. }
  47. .lateral-text:first-child {
  48. left: -10rem;
  49. }
  50. .lateral-text:last-child {
  51. right: -10rem;
  52. }
  53. </style>