1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/views/coming_soon.blade.php
Hillel Coren 75b1350808 bug fixes
2014-01-08 20:09:47 +00:00

35 lines
443 B
PHP
Executable File

@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