style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. * {
  2. font-family: Bahnschrift, sans-serif;
  3. }
  4. main {
  5. display: flex;
  6. width: 100%;
  7. gap: 1rem;
  8. }
  9. #app {
  10. display: flex;
  11. flex: 90%;
  12. flex-direction: column;
  13. gap: 1rem;
  14. overflow: hidden;
  15. padding: 10vh;
  16. }
  17. router-link {
  18. cursor: pointer;
  19. font-family: Bahnschrift, sans-serif;
  20. color: #252525;
  21. padding: 1vh;
  22. min-width: 100px;
  23. transition: .2s;
  24. text-align: center;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. border: #252525 1px solid;
  29. position: relative;
  30. overflow: hidden;
  31. z-index: 0;
  32. }
  33. router-link::before {
  34. content: "";
  35. position: absolute;
  36. width: 110px;
  37. height: 110px;
  38. border-radius: 50%;
  39. top: -3vh;
  40. left: -1vw;
  41. transform: scale(0);
  42. background: #0080ff;
  43. transition: .4s;
  44. z-index:-1;
  45. }
  46. router-link:hover::before {
  47. transform: scale(2);
  48. }
  49. router-link:hover {
  50. color: #eeeeee;
  51. }
  52. #header {
  53. display: flex;
  54. }
  55. .message {
  56. padding: 1vh;
  57. color: white;
  58. margin-bottom: 2vh;
  59. }
  60. input {
  61. font-size: 20px;
  62. }
  63. .button {
  64. width: 100px;
  65. height: 100px;
  66. padding: 1vh;
  67. background: #0080ff;
  68. color: white;
  69. text-decoration: none;
  70. cursor: pointer;
  71. }
  72. /* Basic Card */
  73. .basic-card {
  74. width: 100vw;
  75. position: relative;
  76. overflow: hidden;
  77. padding: 1vh;
  78. }
  79. .basic-card .card-content {
  80. padding: 10px;
  81. }
  82. .basic-card .card-title {
  83. font-size: 15px;
  84. font-family: 'Open Sans', sans-serif;
  85. }
  86. .basic-card .card-text {
  87. line-height: 1.6;
  88. }
  89. .basic-card .card-link {
  90. padding: 15px;
  91. width: -webkit-fill-available;
  92. }
  93. .basic-card .card-link a {
  94. text-decoration: none;
  95. position: relative;
  96. padding: 10px 0px;
  97. }
  98. .basic-card .card-link a:after {
  99. top: 30px;
  100. content: "";
  101. display: block;
  102. height: 2px;
  103. left: 50%;
  104. position: absolute;
  105. width: 0;
  106. }
  107. .basic-card .card-link a:hover:after {
  108. width: 100%;
  109. left: 0;
  110. }
  111. .basic-card-aqua {
  112. position: relative;
  113. overflow: hidden;
  114. }
  115. .basic-card-aqua::before {
  116. background-image: linear-gradient(to bottom right, #26313c, #0080ff);
  117. content: "";
  118. position: absolute;
  119. width: 90vh;
  120. height: 90vh;
  121. z-index: -1;
  122. }
  123. .basic-card-aqua .card-content, .basic-card .card-link a {
  124. color: #fff;
  125. }
  126. .basic-card-aqua .card-link {
  127. border-top: 1px solid #82c1bb;
  128. }
  129. .basic-card-aqua .card-link a:after {
  130. background: #fff;
  131. }
  132. .disabled {
  133. pointer-events: none;
  134. cursor: default;
  135. background: #eeeeee;
  136. color: #252525;
  137. }
  138. .disabled-block {
  139. display: none;
  140. }