style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. html,
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. height: 100%;
  6. }
  7. #app{
  8. font-family: Avenir, Helvetica, Arial, sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. text-align: center;
  12. color: #2c3e50;
  13. margin: 0;
  14. padding: 0;
  15. /* background: rgb(4, 22, 43); */
  16. min-height: 100%;
  17. background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  18. box-sizing: border-box;
  19. padding-bottom: 207px;
  20. }
  21. .el-button.red {
  22. background-color: rgb(192, 36, 40);
  23. border: 0;
  24. color: #fff;
  25. }
  26. .el-button.red:hover {
  27. background-color: rgb(173, 32, 36);
  28. }
  29. .el-input {
  30. /* box-shadow: 0px 0px 10px 0px #0d79f7; */
  31. border: 0;
  32. border-bottom: 1px solid #fff;
  33. }
  34. .el-input input {
  35. font-size: 20px;
  36. letter-spacing:1px;
  37. background:transparent;
  38. border: 0;
  39. color:#fff;
  40. }
  41. .portrait {
  42. width: 100px;
  43. height: 100px;
  44. border-radius: 50%;
  45. display: block;
  46. margin: 0 auto 10px;
  47. }
  48. @media screen and (max-width: 767px) {
  49. .el-message {
  50. min-width: 180px;
  51. }
  52. }
  53. /* 水波 */
  54. .page-bottom{
  55. position:fixed;
  56. left: 0;
  57. right: 0;
  58. bottom: 0;
  59. }
  60. .page-bottom .content-wrap{
  61. background-color: #fff;
  62. }
  63. .page-bottom .content{
  64. max-width: 1200px;
  65. padding:24px;
  66. margin: 0 auto;
  67. font-weight: 300;
  68. }
  69. .waves {
  70. position:relative;
  71. width: 100%;
  72. height:15vh;
  73. margin-bottom:-7px; /*Fix for safari gap*/
  74. min-height:100px;
  75. max-height:150px;
  76. }
  77. .parallax > use {
  78. animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  79. }
  80. .parallax > use:nth-child(1) {
  81. animation-delay: -2s;
  82. animation-duration: 7s;
  83. }
  84. .parallax > use:nth-child(2) {
  85. animation-delay: -3s;
  86. animation-duration: 10s;
  87. }
  88. .parallax > use:nth-child(3) {
  89. animation-delay: -4s;
  90. animation-duration: 13s;
  91. }
  92. .parallax > use:nth-child(4) {
  93. animation-delay: -5s;
  94. animation-duration: 20s;
  95. }
  96. @keyframes move-forever {
  97. 0% {
  98. transform: translate3d(-90px,0,0);
  99. }
  100. 100% {
  101. transform: translate3d(85px,0,0);
  102. }
  103. }
  104. /*Shrinking for mobile*/
  105. @media (max-width: 768px) {
  106. .waves {
  107. height:40px;
  108. min-height:40px;
  109. }
  110. }