some graffix

This commit is contained in:
Enrico Fasoli 2015-04-01 16:54:43 +02:00
parent 43fd9c7055
commit b49c947919
4 changed files with 36 additions and 8 deletions

View File

@ -5,7 +5,7 @@ pertApp.config ($stateProvider,$urlRouterProvider) ->
$stateProvider.state 'home',
url: '/'
templateUrl: 'README.html'
templateUrl: 'welcome.html'
controller: ($scope) -> return
$stateProvider.state 'rawedit',

View File

@ -1,9 +1,10 @@
<!DOCTYPE html>
<html ng-app="pertApp">
<head>
<title>Pert</title>
<title>PBS Wizard</title>
<meta charset="utf-8">
<link rel="stylesheet" href="vis.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="sweet-alert.css">
@ -29,16 +30,19 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#/">Pert</a>
<a class="navbar-brand" href="#/">
<i class="fa fa-bar-chart"></i> PBS</a>
</div>
<div class="collapse navbar-collapse" id="navbar-body">
<ul class="nav navbar-nav">
<li><a href="#/edit">Edit</a></li>
<li><a href="#/rawedit">RawEdit</a></li>
<li><a href="#/table">Table</a></li>
<li><a href="#/pert">Pert</a></li>
<li><a href="#/gantt">Gantt</a></li>
<li><a ui-sref="edit">Edit</a></li>
<li><a ui-sref="rawedit">RawEdit</a></li>
<li><a ui-sref="table">Table</a></li>
<li><a ui-sref="pert">Pert</a></li>
<li><a ui-sref="gantt">Gantt</a></li>
<li class="github"><a href="http://github.com/fazo96/pert">GitHub</a></li>
</ul>
<span class="pull-right github"><a href="http://github.com/fazo96/pert"><i class="fa fa-2x fa-github"></i></a></span>
</div>
</div>
</nav>

View File

@ -17,6 +17,18 @@
margin-bottom: 1em;
}
span.github {
margin-top: .75em;
}
@media(max-width: 765px){
span.github { display: none }
}
@media(min-width: 766px){
li.github { display: none }
}
#ta {
margin: 1em 0 1em 0;
}

12
src/welcome.md Normal file
View File

@ -0,0 +1,12 @@
## Welcome to PBS Wizard
This web application will supposedly help you manage your Project Breakdown Structure.
## What can it do
- You can use the [RawEdit](#/rawedit)or to import and export your PBS data. This software is still a prototype, so be careful!
- You can use the [Edit](#/edit)or to more easily edit your Project Activities.
- With the [Table](#/table) you can view detailed info about your Activities.
- [Pert](#/pert) and [Gantt](#/gantt) are self-explanatory, try them!
Made by [Enrico Fasoli](http://github.com/fazo96).