25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
796 B

  1. @-webkit-keyframes pulse {
  2. from {
  3. opacity: 0.7;
  4. }
  5. to {
  6. opacity: 1;
  7. }
  8. }
  9. @keyframes pulse {
  10. from {
  11. opacity: 0.7;
  12. }
  13. to {
  14. opacity: 1;
  15. }
  16. }
  17. .splash path {
  18. fill: #888;
  19. }
  20. .splash {
  21. margin: auto;
  22. position: absolute;
  23. top: 0px;
  24. left: 0px;
  25. right: 0px;
  26. bottom: 30px;
  27. width: 160px;
  28. height: 160px;
  29. text-align: center;
  30. color: #888;
  31. animation-duration: 1s;
  32. animation-name: pulse;
  33. animation-iteration-count: infinite;
  34. animation-direction: alternate;
  35. -webkit-animation-duration: 1s;
  36. -webkit-animation-name: pulse;
  37. -webkit-animation-iteration-count: infinite;
  38. -webkit-animation-direction: alternate;
  39. }
  40. .splash:after {
  41. content: "frappe.io";
  42. font-size: 30px;
  43. font-weight: 300;
  44. font-family: Helvetica, Arial, sans-serif;
  45. position: relative;
  46. top: 0px;
  47. }