53 lines
766 B
CSS
Raw Normal View History

2013-06-05 11:32:11 +05:30
@-webkit-keyframes pulse {
from {
opacity: 0.7;
}
to {
opacity: 1;
}
}
@keyframes pulse {
from {
opacity: 0.7;
}
to {
opacity: 1;
}
}
.splash {
margin: auto;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
2013-06-05 12:36:50 +05:30
bottom: 30px;
2013-06-05 12:12:56 +05:30
width: 160px;
height: 160px;
2013-06-05 11:32:11 +05:30
text-align: center;
2013-06-05 12:25:28 +05:30
color: #888;
2013-06-05 11:32:11 +05:30
animation-duration: 1s;
animation-name: pulse;
animation-iteration-count: infinite;
animation-direction: alternate;
-webkit-animation-duration: 1s;
-webkit-animation-name: pulse;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
}
2013-06-05 12:25:28 +05:30
.splash:after {
content: "erpnext";
font-size: 30px;
font-weight: 700;
font-family: Helvetica, Arial, sans-serif;
position: relative;
2013-06-05 12:36:50 +05:30
top: -30px;
2013-06-05 12:25:28 +05:30
}