brotherton-erpnext/erpnext/public/css/splash.css

53 lines
766 B
CSS
Raw Normal View History

2013-06-05 06:02:11 +00:00
@-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 07:06:50 +00:00
bottom: 30px;
2013-06-05 06:42:56 +00:00
width: 160px;
height: 160px;
2013-06-05 06:02:11 +00:00
text-align: center;
2013-06-05 06:55:28 +00:00
color: #888;
2013-06-05 06:02:11 +00:00
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 06:55:28 +00:00
.splash:after {
content: "erpnext";
font-size: 30px;
2013-11-14 10:05:57 +00:00
font-weight: 300;
2013-06-05 06:55:28 +00:00
font-family: Helvetica, Arial, sans-serif;
position: relative;
2013-06-05 07:06:50 +00:00
top: -30px;
2013-06-05 06:55:28 +00:00
}