Skip to content

Commit

Permalink
Added new version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
sebnitu committed Jan 21, 2017
2 parents 1f651c9 + 700a696 commit 9b1f322
Show file tree
Hide file tree
Showing 23 changed files with 1,604 additions and 42 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ruby RUBY_VERSION
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "3.2.1"
gem "jekyll", "3.3.1"

# This is the default theme for new Jekyll sites. You may change this to anything you like.
# gem "minima"
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ PLATFORMS

DEPENDENCIES
github-pages
jekyll (= 3.3.1)

RUBY VERSION
ruby 2.4.0p0
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Sebastian Nitu (http://sebnitu.com)
Copyright (c) 2017 Sebastian Nitu (http://sebnitu.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
1 change: 1 addition & 0 deletions docs/_data/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ version: v2.1.0
year: 2017
author: Sebastian Nitu
url: http://sebnitu.com
year: 2017
repository:
type : git
url : https://github.com/sebnitu/BaseWeb.git
2 changes: 1 addition & 1 deletion docs/_layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<aside class="sidebar sticky col col-2">
<div class="widget widget-back">
<a href="/devlog/">&larr; Index</a>
<a href="/devlog/" class="index button">&larr; Index</a>
</div><!-- .widget -->
</aside>

Expand Down
261 changes: 259 additions & 2 deletions docs/assets/css/baseweb.css
Original file line number Diff line number Diff line change
Expand Up @@ -2673,6 +2673,218 @@ fieldset[disabled] .input {
transform: translate3d(0, 0, 0);
}

/*==============================================================================
@Tabs - scss/blocks/_tabs.scss
==============================================================================*/
/**
* Base styles for tab wrapper, nav and content
*/
.tabs {
position: relative;
margin: 2em 0;
}

.tabs .tabs-nav,
.tabs .tabs-content {
margin: 0;
}

.tabs .tabs-nav {
z-index: 10;
}

.tabs .tabs-content {
z-index: 5;
}

.tabs-nav {
margin: 2em 0;
text-align: center;
}

.tabs-nav ul {
display: flex;
list-style: none;
margin: 0;
}

.tabs-nav ul li {
flex: 1 0 auto;
margin: 0;
}

.tabs-nav a {
display: block;
padding: 1em;
border: none;
}

.tabs-nav.inline ul {
flex-wrap: wrap;
}

.tabs-nav.inline ul li {
flex: 0 0 auto;
}

.tabs-nav.inline ul li a {
padding: 1em 2em;
}

.tabs-content {
margin: 2em 0;
}

.tabs-content .tabs-panel {
display: none;
}

.tabs-content .tabs-panel.active {
display: block;
}

/**
* Tabs Style: Default
*/
.style-fold .tabs-nav ul,
.tabs-nav.style-fold ul {
background: #f5f5f5;
border: 1px solid #e6e6e6;
border-radius: 3px;
}

.style-fold .tabs-nav ul li,
.tabs-nav.style-fold ul li {
border-right: 1px solid #e6e6e6;
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear;
}

.style-fold .tabs-nav ul li:first-child,
.tabs-nav.style-fold ul li:first-child {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}

.style-fold .tabs-nav ul li:last-child,
.tabs-nav.style-fold ul li:last-child {
border-right: none;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}

.style-fold .tabs-nav a,
.tabs-nav.style-fold a {
color: #303030;
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear;
}

.style-fold .tabs-nav a:hover,
.tabs-nav.style-fold a:hover {
background: #e6e6e6;
color: #303030;
}

.style-fold .tabs-nav ul li.active,
.tabs-nav.style-fold ul li.active {
background: #ffffff;
}

.style-fold .tabs-nav .active a,
.tabs-nav.style-fold .active a {
color: #303030;
}

.style-fold .tabs-nav .active a:hover,
.tabs-nav.style-fold .active a:hover {
background: #ffffff;
}

.style-fold .tabs-nav.inline ul li:last-child,
.tabs-nav.style-fold.inline ul li:last-child {
border-right: 1px solid #e6e6e6;
}

.style-fold .tabs-nav ul {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}

.style-fold .tabs-nav ul li {
border-bottom: 1px solid transparent;
margin-bottom: -1px;
}

.style-fold .tabs-nav ul li:first-child {
border-bottom-left-radius: 0;
}

.style-fold .tabs-nav ul li:last-child {
border-bottom-right-radius: 0;
}

.style-fold .tabs-nav ul li.active {
border-bottom: 1px solid #ffffff;
}

.style-fold .tabs-content {
padding: 1em 2em;
border: 1px solid #e6e6e6;
border-top: none;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}

/**
* Tabs Style: Line
*/
.style-line .tabs-nav ul,
.tabs-nav.style-line ul {
border-bottom: 1px solid #e6e6e6;
}

.style-line .tabs-nav ul li,
.tabs-nav.style-line ul li {
border-bottom: 3px solid transparent;
margin-bottom: -1px;
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear;
}

.style-line .tabs-nav a,
.tabs-nav.style-line a {
color: #aaaaaa;
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear;
}

.style-line .tabs-nav a:hover,
.tabs-nav.style-line a:hover {
color: #1489C9;
}

.style-line .tabs-nav ul li.active,
.tabs-nav.style-line ul li.active {
border-bottom: 3px solid #1489C9;
}

.style-line .tabs-nav .active a,
.tabs-nav.style-line .active a {
color: #303030;
}

.style-line .tabs-nav .active a:hover,
.tabs-nav.style-line .active a:hover {
color: #1489C9;
}

.style-line .tabs-content {
padding: 1em 2em;
border: 1px solid #e6e6e6;
border-top: none;
}

/*==============================================================================
@Grid System - scss/custom/_custom.scss
==============================================================================*/
Expand Down Expand Up @@ -3348,9 +3560,38 @@ body {
/**
* Widget Menu
*/
.widget-menu .active > a {
.widget-menu ul {
list-style: none;
margin: 1em 0;
}

.widget-menu ul ul {
margin: 0 0 0 1em;
}

.widget-menu ul li {
margin: 1px 0;
}

.widget-menu ul li a {
display: block;
padding: 0.5em 1em;
color: #aaaaaa;
border: 0 none;
border-radius: 3px;
}

.widget-menu ul li a:hover {
color: #303030;
}

.widget-menu .active > a {
background: #f5f5f5;
color: #de5151;
}

.widget-menu .active > a:hover {
color: #de5151;
}

.widget-menu ul ul {
Expand Down Expand Up @@ -3395,7 +3636,7 @@ body {

@media (min-width: 760px) {
.widget-back {
margin: 1em 0;
margin: 0;
text-align: left;
}
.widget-back:first-child, .widget-back:last-child {
Expand Down Expand Up @@ -3613,6 +3854,15 @@ body {
}
}

/**
* Featured Images
*/
.main .featured {
margin: 0 0 2em 0;
width: 100%;
height: auto;
}

/**
* Comments
*/
Expand Down Expand Up @@ -5042,3 +5292,10 @@ figure {
float: left;
margin: 1em 1em 0 0;
}

/**
* Tabs
*/
.demo-tabs.inverted {
background: #303030;
}
2 changes: 1 addition & 1 deletion docs/assets/css/baseweb.min.css

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/devlog/illustration-tabs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9b1f322

Please sign in to comment.