1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/coming_soon.blade.php

35 lines
444 B
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
@extends('master')
@section('body')
<style type="text/css">
html, body {
height: 100%;
vertical-align: middle;
}
.main_div {
width: 500px;
height: 200px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
font-size: 72px;
font-family: arial;
color: #CCCCCC;
margin: auto;
}
</style>
<div class="main_div">
coming soon
</div>
@stop