Content.vue 634 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="content">
  3. <Crypto></Crypto>
  4. <Addus></Addus>
  5. <Server></Server>
  6. </div>
  7. </template>
  8. <script>
  9. import Crypto from '../components/Crypto'
  10. import Addus from '../components/Addus'
  11. import Server from '../components/Server'
  12. export default {
  13. name: 'Content',
  14. components: {Crypto, Addus,Server}
  15. }
  16. </script>
  17. <style>
  18. .content {
  19. background-color: #f5f8ff;
  20. }
  21. .title {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. h3 {
  26. font-size: 35px;
  27. font-weight: 700;
  28. line-height: 1;
  29. }
  30. hr {
  31. width: 420px;
  32. height: 1px;
  33. background-color: #e5e5e5;
  34. border: 0;
  35. }
  36. }
  37. </style>