Skip to content

Commit db04c25

Browse files
committed
Update ui
1 parent 2ebc1a9 commit db04c25

File tree

3 files changed

+26
-15
lines changed

3 files changed

+26
-15
lines changed

public/css/app.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1391,17 +1391,22 @@ i.icon {
13911391
}
13921392

13931393
.home-head-btn {
1394-
padding: 11px 25px;
1394+
padding: 11px 25px;
13951395
text-transform: uppercase;
13961396
font-weight: 500;
1397-
border-width: 2px;
13981397
border-style: solid;
1399-
background-color: #fff;
1398+
background-color: transparent;
1399+
color: white;
1400+
font-size: 12px;
1401+
border: 1px solid #fff;
1402+
border-radius: 3px;
1403+
transition: all 0.1s;
14001404
}
14011405

14021406
.home-head-btn:hover {
1403-
background-color: #fff;
1404-
border-color: #333;
1407+
color: white;
1408+
background-color: transparent;
1409+
transform: scale(1.05);
14051410
}
14061411

14071412
.home-nav {

resources/views/home.blade.php

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,26 @@
55
<div class="header-bg">
66
@include('partials.home-nav')
77
<div>
8-
<div style="padding: 105px 0px;" class="text-center">
8+
<div style="padding: 109px 0px;" class="text-center">
99
<div style="margin-bottom: 45px;">
1010
<img src="/img/white-logo.png" alt="">
1111
</div>
12-
<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>
13-
<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>
12+
<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>
13+
<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>
1414
<div class="brand-buttons text-center">
15-
<a href="{{ route('team.create') }}" class="btn btn-default home-head-btn" style="border: none;">Create Team</a>
16-
<a href="{{ route('team.login') }}" class="btn btn-default home-head-btn" style="border: none;">Login Team</a>
15+
<a href="{{ route('team.create') }}" class="btn btn-default home-head-btn">Create Team</a>
16+
<a href="{{ route('team.login') }}" class="btn btn-default home-head-btn">Login Team</a>
1717
</div>
1818
</div>
1919
</div>
2020
</div>
2121
<div style="padding-top: 95px; padding-bottom: 75px;" id="features">
22+
<div class="row no-container">
23+
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center">
24+
<h1 style="font-weight: 100; font-size: 38px; margin-bottom: 15px;">Elegant UI and so much more.</h1>
25+
<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>
26+
</div>
27+
</div>
2228
<div class="row no-container" style="width: 1130px; margin: auto;">
2329
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6" style="margin-bottom: 45px;">
2430
<div class="media">

routes/web.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
Route::get('account', 'UserController@accountSettings')->name('settings.account');
3838
});
3939

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

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

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

@@ -140,5 +140,5 @@
140140
Route::post('{wiki_slug}/pages/{page_slug}/comments', 'CommentController@storePageComment')->name('pages.comments.store');
141141
Route::delete('{wiki_slug}/pages/{page_slug}/{comment_id}', 'CommentController@destroy')->name('comments.delete');
142142
});
143-
143+
144144
});

0 commit comments

Comments
 (0)