Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed Mar 26, 2019
0 parents commit b079831
Show file tree
Hide file tree
Showing 41 changed files with 2,987 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/css/base-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/base.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/normalize.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions assets/sass/base-rtl.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// Basic theme styles, RTL.
//
// @see base.scss
//

$left: right;
$right: left;

body {
direction: rtl;
unicode-bidi: embed;
}

@import 'parts/_import';
20 changes: 20 additions & 0 deletions assets/sass/base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// Basic theme styles.
//
// These are bare minimum styles the theme needs. Add additional styles
// via a child theme or via WordPress' "Additional CSS" customizer field.
// Certain styles are taken and adapted from Underscores.me starter theme.
//
// Using https://www.modularscale.com/?1,0.4858&em&1.618
//
// @package Playground for Beaver Themer
// @copyright WebMan Design, Oliver Juhas
//
// @since 1.0.0
// @version 1.0.0
//

$left: left;
$right: right;

@import 'parts/_import';
Loading

0 comments on commit b079831

Please sign in to comment.