[style] better demo start page

This commit is contained in:
Rushabh Mehta 2017-01-10 14:46:45 +05:30
parent 51d45d8bce
commit d40e661ebd
4 changed files with 18 additions and 23 deletions

View File

@ -48,7 +48,7 @@ website_generators = ["Item Group", "Item", "Sales Partner", "Job Opening", "Stu
website_context = {
"favicon": "/assets/erpnext/images/favicon.png",
"splash_image": "/assets/erpnext/images/splash.png"
"splash_image": "/assets/erpnext/images/erp-icon.svg"
}
website_route_rules = [

View File

@ -78,7 +78,6 @@
font-weight: inherit;
color: #8D99A6;
}
.transaction-list-item .items-preview,
.transaction-list-item .transaction-time {
margin-top: 5px;
}

View File

@ -93,14 +93,10 @@
color: @text-muted;
}
.transaction-time {
// margin-left: 15px;
}
.items-preview,
.transaction-time {
margin-top: 5px;
}
}
// order.html

View File

@ -48,23 +48,23 @@ $(document).ready(function() {
{% endblock %}
{% block page_content %}
<div class='page-card'>
<!-- no-header -->
<div class="page-hero text-center">
<img src="/assets/erpnext/images/erp-icon.svg" style="max-width: 100px; max-height: 100px;">
<h1>ERPNext Demo</h1>
<p style="margin-top: 60px;">
<input id="lead-email" type="email"
class="form-control" placeholder="Your Email Address (optional)"
style="width: 75%; max-width: 400px; margin: auto;">
</p>
<button type="submit" id="login_btn" class="btn btn-default">Launch Demo</button>
<hr style="margin: 60px 0px;">
<p class="text-muted small">Some functionality is disabled for the demo app. The demo data will be cleared regulary.
<br class="hidden-xs">
To start your free ERPNext account, <a href="https://erpnext.com/signup?plan=Free-Solo">click here</a></p>
<div class='page-card-head'>
<span class='indicator blue'>
{{ _("ERPNext Demo") }}</span>
</div>
<!-- <img src="/assets/erpnext/images/erp-icon.svg" style="max-width: 40px; max-height: 40px;"> -->
<p>Some functionality is disabled for the demo and the data will be cleared regulary.</p>
<div><button type="submit" id="login_btn" class="btn btn-primary btn-sm">Launch Demo</button></div>
</div>
<p class='text-muted text-center small' style='margin-top: -20px;'><a href="https://erpnext.com/signup?plan=Free-Solo">Sign up for a Free ERPNext.com account here</a>
</p>
<style>
html, body {
background-color: #f5f7fa;
}
</style>
{% endblock %}