Anand Doshi | 9c8ed8b | 2013-06-05 11:32:11 +0530 | [diff] [blame] | 1 | @-webkit-keyframes pulse { |
| 2 | from { |
| 3 | opacity: 0.7; |
| 4 | } |
| 5 | |
| 6 | to { |
| 7 | opacity: 1; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | @keyframes pulse { |
| 12 | from { |
| 13 | opacity: 0.7; |
| 14 | } |
| 15 | |
| 16 | to { |
| 17 | opacity: 1; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | |
| 22 | .splash { |
| 23 | margin: auto; |
Anand Doshi | 9c8ed8b | 2013-06-05 11:32:11 +0530 | [diff] [blame] | 24 | position: absolute; |
| 25 | top: 0px; |
| 26 | left: 0px; |
| 27 | right: 0px; |
Anand Doshi | 5156463 | 2013-06-05 12:36:50 +0530 | [diff] [blame] | 28 | bottom: 30px; |
Anand Doshi | d379cb7 | 2013-06-05 12:12:56 +0530 | [diff] [blame] | 29 | width: 160px; |
| 30 | height: 160px; |
Anand Doshi | 9c8ed8b | 2013-06-05 11:32:11 +0530 | [diff] [blame] | 31 | text-align: center; |
Anand Doshi | 713c183 | 2013-06-05 12:25:28 +0530 | [diff] [blame] | 32 | color: #888; |
| 33 | |
Anand Doshi | 9c8ed8b | 2013-06-05 11:32:11 +0530 | [diff] [blame] | 34 | animation-duration: 1s; |
| 35 | animation-name: pulse; |
| 36 | animation-iteration-count: infinite; |
| 37 | animation-direction: alternate; |
| 38 | |
| 39 | -webkit-animation-duration: 1s; |
| 40 | -webkit-animation-name: pulse; |
| 41 | -webkit-animation-iteration-count: infinite; |
| 42 | -webkit-animation-direction: alternate; |
Anand Doshi | 1510de3 | 2013-06-05 11:50:07 +0530 | [diff] [blame] | 43 | } |
Anand Doshi | 713c183 | 2013-06-05 12:25:28 +0530 | [diff] [blame] | 44 | |
| 45 | .splash:after { |
| 46 | content: "erpnext"; |
| 47 | font-size: 30px; |
| 48 | font-weight: 700; |
| 49 | font-family: Helvetica, Arial, sans-serif; |
| 50 | position: relative; |
Anand Doshi | 5156463 | 2013-06-05 12:36:50 +0530 | [diff] [blame] | 51 | top: -30px; |
Anand Doshi | 713c183 | 2013-06-05 12:25:28 +0530 | [diff] [blame] | 52 | } |