Skip to content

Commit

Permalink
Update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ziishaned committed May 8, 2017
1 parent 2ebc1a9 commit db04c25
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 15 deletions.
15 changes: 10 additions & 5 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,17 +1391,22 @@ i.icon {
}

.home-head-btn {
padding: 11px 25px;
padding: 11px 25px;
text-transform: uppercase;
font-weight: 500;
border-width: 2px;
border-style: solid;
background-color: #fff;
background-color: transparent;
color: white;
font-size: 12px;
border: 1px solid #fff;
border-radius: 3px;
transition: all 0.1s;
}

.home-head-btn:hover {
background-color: #fff;
border-color: #333;
color: white;
background-color: transparent;
transform: scale(1.05);
}

.home-nav {
Expand Down
16 changes: 11 additions & 5 deletions resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,26 @@
<div class="header-bg">
@include('partials.home-nav')
<div>
<div style="padding: 105px 0px;" class="text-center">
<div style="padding: 109px 0px;" class="text-center">
<div style="margin-bottom: 45px;">
<img src="/img/white-logo.png" alt="">
</div>
<h1 style="line-height: 52px; font-size: 36px; font-weight: 700; width: 650px; margin: auto auto 24px; color: white;">Opus lets you work more collaboratively and get more done.</h1>
<p class="minor-text" style="font-size: 20px; width: 550px; margin: auto auto 24px; font-weight: 300; color: white;">Opus let you work more collaboratively to document who you are, what you do and how to achieve results.</p>
<h1 style="line-height: 52px;font-size: 38px; font-weight: 700; width: 610px; margin: auto auto 24px;color: white;font-weight: 100;">Opus lets you work more collaboratively and get more done.</h1>
<p class="minor-text" style="font-size: 17px;width: 550px;margin: auto auto 24px;font-weight: normal;color: white;">Opus let you work more collaboratively to document who you are, what you do and how to achieve results.</p>
<div class="brand-buttons text-center">
<a href="{{ route('team.create') }}" class="btn btn-default home-head-btn" style="border: none;">Create Team</a>
<a href="{{ route('team.login') }}" class="btn btn-default home-head-btn" style="border: none;">Login Team</a>
<a href="{{ route('team.create') }}" class="btn btn-default home-head-btn">Create Team</a>
<a href="{{ route('team.login') }}" class="btn btn-default home-head-btn">Login Team</a>
</div>
</div>
</div>
</div>
<div style="padding-top: 95px; padding-bottom: 75px;" id="features">
<div class="row no-container">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center">
<h1 style="font-weight: 100; font-size: 38px; margin-bottom: 15px;">Elegant UI and so much more.</h1>
<p style="color: rgba(0,0,0,0.55); font-size: 17px; line-height: 24px; font-weight: 400; margin: 0 0 70px; ">Check out all you can do in Opus.</p>
</div>
</div>
<div class="row no-container" style="width: 1130px; margin: auto;">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6" style="margin-bottom: 45px;">
<div class="media">
Expand Down
10 changes: 5 additions & 5 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
Route::get('account', 'UserController@accountSettings')->name('settings.account');
});

Route::group(['prefix' => '/{team_slug}/tags/{tag_slug}'], function() {
Route::group(['prefix' => '/{team_slug}/tags/{tag_slug}'], function () {
Route::get('wikis', 'WikiController@getTagWikis')->name('tags.wikis');
Route::get('pages', 'PageController@getTagPages')->name('tags.pages');
});
Expand All @@ -51,11 +51,11 @@
Route::get('create', 'RoleController@create')->name('roles.create');
});

Route::group([ 'prefix' => '{team_slug}/users/{user_slug}/notifications'], function() {
Route::group(['prefix' => '{team_slug}/users/{user_slug}/notifications'], function () {
Route::get('read-all', 'NotificationController@readAll')->name('notifications.readall');
});
});

Route::group([ 'prefix' => '{team_slug}/settings'], function() {
Route::group(['prefix' => '{team_slug}/settings'], function () {
Route::get('general', 'TeamController@generalSettings')->name('teams.settings.general');
Route::get('members', 'TeamController@membersSettings')->name('teams.settings.members');

Expand Down Expand Up @@ -140,5 +140,5 @@
Route::post('{wiki_slug}/pages/{page_slug}/comments', 'CommentController@storePageComment')->name('pages.comments.store');
Route::delete('{wiki_slug}/pages/{page_slug}/{comment_id}', 'CommentController@destroy')->name('comments.delete');
});

});

1 comment on commit db04c25

@SalahAdDin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's about a change log?

Please sign in to comment.