From 1194369da3ec9ebb06cf214196c10d32baa8bb31 Mon Sep 17 00:00:00 2001 From: russellballestrini Date: Sat, 8 Jul 2017 18:52:48 -0400 Subject: [PATCH] first commit! new file: .gitignore new file: MANIFEST.in new file: readme.rst new file: remarkbox_theme_meta/__init__.py new file: remarkbox_theme_meta/static/theme/meta/css/custom.css new file: remarkbox_theme_meta/static/theme/meta/css/normalize.css new file: remarkbox_theme_meta/static/theme/meta/css/skeleton.css new file: remarkbox_theme_meta/static/theme/meta/img/remarkbox-minified.png new file: remarkbox_theme_meta/templates/meta-base.j2 new file: setup.py --- .gitignore | 2 + MANIFEST.in | 2 + readme.rst | 22 + remarkbox_theme_meta/__init__.py | 0 .../static/theme/meta/css/custom.css | 159 +++++++ .../static/theme/meta/css/normalize.css | 427 ++++++++++++++++++ .../static/theme/meta/css/skeleton.css | 418 +++++++++++++++++ .../theme/meta/img/remarkbox-minified.png | Bin 0 -> 11978 bytes remarkbox_theme_meta/templates/meta-base.j2 | 89 ++++ setup.py | 32 ++ 10 files changed, 1151 insertions(+) create mode 100644 .gitignore create mode 100644 MANIFEST.in create mode 100644 readme.rst create mode 100644 remarkbox_theme_meta/__init__.py create mode 100644 remarkbox_theme_meta/static/theme/meta/css/custom.css create mode 100644 remarkbox_theme_meta/static/theme/meta/css/normalize.css create mode 100644 remarkbox_theme_meta/static/theme/meta/css/skeleton.css create mode 100644 remarkbox_theme_meta/static/theme/meta/img/remarkbox-minified.png create mode 100644 remarkbox_theme_meta/templates/meta-base.j2 create mode 100644 setup.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..66dbf51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.egg-info +*.pyc diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..9e4a2eb --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include *.txt *.ini *.cfg *.rst +recursive-include remarkbox_theme_meta *.ico *.png *.css *.gif *.jpg *.pt *.txt *.mak *.mako *.js *.html *.xml *.j2 diff --git a/readme.rst b/readme.rst new file mode 100644 index 0000000..2de6a17 --- /dev/null +++ b/readme.rst @@ -0,0 +1,22 @@ +Remarkbox theme for meta and faq +################################ + +This is the theme used on: + +* https://meta.remarkbox.com +* https://faq.remarkbox.com +* https://demo.remarkbox.com + +If you use a hosted site you may choose this theme on your namespace dashboard. + +Otherwise a dedicated Remarkbox must install the theme into the python environment using: + +.. code-block:: bash + + python setup.py install + +Then configure it in the Remarkbox .ini file using: + +.. code-block:: bash + + app.theme = meta diff --git a/remarkbox_theme_meta/__init__.py b/remarkbox_theme_meta/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/remarkbox_theme_meta/static/theme/meta/css/custom.css b/remarkbox_theme_meta/static/theme/meta/css/custom.css new file mode 100644 index 0000000..9d06a09 --- /dev/null +++ b/remarkbox_theme_meta/static/theme/meta/css/custom.css @@ -0,0 +1,159 @@ +h1, h2, h3, h4, h5, h6 { + padding-top: 20px; +} + +a, a:link, a:visited { + text-decoration: none; +} + +a.anchor { + display: block; + position: relative; + top: -150px; + visibility: hidden; +} + +.navbar a { + color: #888888; +} + +.nav a { + color: #888888; +} + +body { + background-color: #f8f5f5; + overflow-x: hidden; +} + +.pricebox { + text-align: center; + background-color: #ffffff; + padding-top: 30px; + padding-bottom: 30px; +} + +.deal { + padding-top: 50px; + padding-bottom: 50px; +} + +.graybg { + /*background-color: #f8f5f5;*/ + background-color: #ffffff; +} + +.reasons { + /*background-color: #f8f5f5;*/ + background-color: #ffffff; +} + + +.nav, .navbar { + font-weight: bold; + width: 100%; + background-color: #ffffff; + border-top: solid 4px #AA0000; +} + +.nav { + padding-top: 15px; + padding-bottom: 10px; + /*border-bottom: 1px solid #eee;*/ +} + +.navbar { + display: none; + position: fixed; + top: 0; + left: 0; + + z-index: 99; +} + +.redline { + border-top: solid 4px #AA0000; +} + +.has-docked-nav .navbar { + display: block; + padding-top: 15px; + padding-bottom: 10px; + border-bottom: 1px solid #eee; +} + +.navlinks { + float: right; + padding-right: 40px; + padding-left: 40px; + padding-top: 10px; +} + +.navlink { + padding-right: 20px; +} + +.navlogo { + width: 280px; + /*vertical-align: middle;*/ + padding-right: 0px; + padding-left: 40px; +} + +.herologo { + width: 100%; + max-width: 600px; + min-width: 300px; + padding-top: 40px; + padding-bottom: 60px; +} + +.row-padding { + padding-top: 60px; + padding-bottom: 60px; +} + +span.avoidwrap { + display:inline-block; +} + +.container { + max-width: 860px; +} + +/* mail chimp and red buttons */ + +#mc_embed_signup { + clear:left; font:14px Helvetica,Arial,sans-serif; +} +#mc_embed_signup .button, .red { + background-color: #AA0000; + border-color: #AA0000; + color: #FFFFFF !important; +} +#mc_embed_signup .button:hover, .red:hover { + background-color: #D40000; + border-color: #DA0000; + color: #FFFFFF !important; +} + +/* media viewports */ + +.shown-on-phone { + display: none; +} + +.shown-on-tablet { + display: none; +} + +@media screen and (max-width:568px) { + .hidden-on-phone {display: none} + .shown-on-phone {display: block} +} + +@media screen and (max-width:750px) { + .navbar.hidden-on-tablet {display: none} + .hidden-on-tablet {display: none} + .shown-on-tablet {display: block} +} diff --git a/remarkbox_theme_meta/static/theme/meta/css/normalize.css b/remarkbox_theme_meta/static/theme/meta/css/normalize.css new file mode 100644 index 0000000..458eea1 --- /dev/null +++ b/remarkbox_theme_meta/static/theme/meta/css/normalize.css @@ -0,0 +1,427 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} diff --git a/remarkbox_theme_meta/static/theme/meta/css/skeleton.css b/remarkbox_theme_meta/static/theme/meta/css/skeleton.css new file mode 100644 index 0000000..3abf22e --- /dev/null +++ b/remarkbox_theme_meta/static/theme/meta/css/skeleton.css @@ -0,0 +1,418 @@ +/* +* Skeleton V2.0.4 +* Copyright 2014, Dave Gamache +* www.getskeleton.com +* Free to use under the MIT license. +* http://www.opensource.org/licenses/mit-license.php +* 12/29/2014 +*/ + + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– +- Grid +- Base Styles +- Typography +- Links +- Buttons +- Forms +- Lists +- Code +- Tables +- Spacing +- Utilities +- Clearing +- Media Queries +*/ + + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + max-width: 960px; + margin: 0 auto; + padding: 0 20px; + box-sizing: border-box; } +.column, +.columns { + width: 100%; + float: left; + box-sizing: border-box; } + +/* For devices larger than 400px */ +@media (min-width: 400px) { + .container { + width: 85%; + padding: 0; } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container { + width: 80%; } + .column, + .columns { + margin-left: 4%; } + .column:first-child, + .columns:first-child { + margin-left: 0; } + + .one.column, + .one.columns { width: 4.66666666667%; } + .two.columns { width: 13.3333333333%; } + .three.columns { width: 22%; } + .four.columns { width: 30.6666666667%; } + .five.columns { width: 39.3333333333%; } + .six.columns { width: 48%; } + .seven.columns { width: 56.6666666667%; } + .eight.columns { width: 65.3333333333%; } + .nine.columns { width: 74.0%; } + .ten.columns { width: 82.6666666667%; } + .eleven.columns { width: 91.3333333333%; } + .twelve.columns { width: 100%; margin-left: 0; } + + .one-third.column { width: 30.6666666667%; } + .two-thirds.column { width: 65.3333333333%; } + + .one-half.column { width: 48%; } + + /* Offsets */ + .offset-by-one.column, + .offset-by-one.columns { margin-left: 8.66666666667%; } + .offset-by-two.column, + .offset-by-two.columns { margin-left: 17.3333333333%; } + .offset-by-three.column, + .offset-by-three.columns { margin-left: 26%; } + .offset-by-four.column, + .offset-by-four.columns { margin-left: 34.6666666667%; } + .offset-by-five.column, + .offset-by-five.columns { margin-left: 43.3333333333%; } + .offset-by-six.column, + .offset-by-six.columns { margin-left: 52%; } + .offset-by-seven.column, + .offset-by-seven.columns { margin-left: 60.6666666667%; } + .offset-by-eight.column, + .offset-by-eight.columns { margin-left: 69.3333333333%; } + .offset-by-nine.column, + .offset-by-nine.columns { margin-left: 78.0%; } + .offset-by-ten.column, + .offset-by-ten.columns { margin-left: 86.6666666667%; } + .offset-by-eleven.column, + .offset-by-eleven.columns { margin-left: 95.3333333333%; } + + .offset-by-one-third.column, + .offset-by-one-third.columns { margin-left: 34.6666666667%; } + .offset-by-two-thirds.column, + .offset-by-two-thirds.columns { margin-left: 69.3333333333%; } + + .offset-by-one-half.column, + .offset-by-one-half.columns { margin-left: 52%; } + +} + + +/* Base Styles +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* NOTE +html is set to 62.5% so that all the REM measurements throughout Skeleton +are based on 10px sizing. So basically 1.5rem = 15px :) */ +html { + font-size: 62.5%; } +body { + font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */ + line-height: 1.6; + font-weight: 400; + font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; + color: #222; } + + +/* Typography +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 2rem; + font-weight: 300; } +h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;} +h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; } +h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; } +h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; } +h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; } +h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; } + +/* Larger than phablet */ +@media (min-width: 550px) { + h1 { font-size: 5.0rem; } + h2 { font-size: 4.2rem; } + h3 { font-size: 3.6rem; } + h4 { font-size: 3.0rem; } + h5 { font-size: 2.4rem; } + h6 { font-size: 1.5rem; } +} + +p { + margin-top: 0; } + + +/* Links +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +a { + color: #1EAEDB; } +a:hover { + color: #0FA0CE; } + + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.button, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + height: 38px; + padding: 0 30px; + color: #555; + text-align: center; + font-size: 11px; + font-weight: 600; + line-height: 38px; + letter-spacing: .1rem; + text-transform: uppercase; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border-radius: 4px; + border: 1px solid #bbb; + cursor: pointer; + box-sizing: border-box; } +.button:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.button:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + color: #333; + border-color: #888; + outline: 0; } +.button.button-primary, +button.button-primary, +input[type="submit"].button-primary, +input[type="reset"].button-primary, +input[type="button"].button-primary { + color: #FFF; + background-color: #33C3F0; + border-color: #33C3F0; } +.button.button-primary:hover, +button.button-primary:hover, +input[type="submit"].button-primary:hover, +input[type="reset"].button-primary:hover, +input[type="button"].button-primary:hover, +.button.button-primary:focus, +button.button-primary:focus, +input[type="submit"].button-primary:focus, +input[type="reset"].button-primary:focus, +input[type="button"].button-primary:focus { + color: #FFF; + background-color: #1EAEDB; + border-color: #1EAEDB; } + + +/* Forms +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; } +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } +textarea { + min-height: 65px; + padding-top: 6px; + padding-bottom: 6px; } +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #33C3F0; + outline: 0; } +label, +legend { + display: block; + margin-bottom: .5rem; + font-weight: 600; } +fieldset { + padding: 0; + border-width: 0; } +input[type="checkbox"], +input[type="radio"] { + display: inline; } +label > .label-body { + display: inline-block; + margin-left: .5rem; + font-weight: normal; } + + +/* Lists +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +ul { + list-style: circle inside; } +ol { + list-style: decimal inside; } +ol, ul { + padding-left: 0; + margin-top: 0; } +ul ul, +ul ol, +ol ol, +ol ul { + margin: 1.5rem 0 1.5rem 3rem; + font-size: 90%; } +li { + margin-bottom: 1rem; } + + +/* Code +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +code { + padding: .2rem .5rem; + margin: 0 .2rem; + font-size: 90%; + white-space: nowrap; + background: #F1F1F1; + border: 1px solid #E1E1E1; + border-radius: 4px; } +pre > code { + display: block; + padding: 1rem 1.5rem; + white-space: pre; } + + +/* Tables +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +th, +td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #E1E1E1; } +th:first-child, +td:first-child { + padding-left: 0; } +th:last-child, +td:last-child { + padding-right: 0; } + + +/* Spacing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +button, +.button { + margin-bottom: 1rem; } +input, +textarea, +select, +fieldset { + margin-bottom: 1.5rem; } +pre, +blockquote, +dl, +figure, +table, +p, +ul, +ol, +form { + margin-bottom: 2.5rem; } + + +/* Utilities +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.u-full-width { + width: 100%; + box-sizing: border-box; } +.u-max-full-width { + max-width: 100%; + box-sizing: border-box; } +.u-pull-right { + float: right; } +.u-pull-left { + float: left; } + + +/* Misc +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +hr { + margin-top: 3rem; + margin-bottom: 3.5rem; + border-width: 0; + border-top: 1px solid #E1E1E1; } + + +/* Clearing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Self Clearing Goodness */ +.container:after, +.row:after, +.u-cf { + content: ""; + display: table; + clear: both; } + + +/* Media Queries +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* +Note: The best way to structure the use of media queries is to create the queries +near the relevant code. For example, if you wanted to change the styles for buttons +on small devices, paste the mobile query code up in the buttons section and style it +there. +*/ + + +/* Larger than mobile */ +@media (min-width: 400px) {} + +/* Larger than phablet (also point when grid becomes active) */ +@media (min-width: 550px) {} + +/* Larger than tablet */ +@media (min-width: 750px) {} + +/* Larger than desktop */ +@media (min-width: 1000px) {} + +/* Larger than Desktop HD */ +@media (min-width: 1200px) {} diff --git a/remarkbox_theme_meta/static/theme/meta/img/remarkbox-minified.png b/remarkbox_theme_meta/static/theme/meta/img/remarkbox-minified.png new file mode 100644 index 0000000000000000000000000000000000000000..0eca2feceff544fd51a8f0d556e6d0ad5bcab6dd GIT binary patch literal 11978 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 literal 0 HcmV?d00001 diff --git a/remarkbox_theme_meta/templates/meta-base.j2 b/remarkbox_theme_meta/templates/meta-base.j2 new file mode 100644 index 0000000..4043e38 --- /dev/null +++ b/remarkbox_theme_meta/templates/meta-base.j2 @@ -0,0 +1,89 @@ + + + + {% block title %}{{ request.domain }}{% endblock %} + + + + + + + {% include 'snippets/stylesheet-includes.j2' %} + + + + + + {% include 'snippets/javascript-includes.j2' %} + + + + + +{% set main_domain = "https://www.remarkbox.com" %} + + + + + +
+{%- for message, level in request.session.pop_flash() %} +
+ + {{message}} +
+{%- endfor %} +
+ + + +
+{%- block menu %} + home | + new thread | + + {%- if request.user %} + {{request.user.name}} [log out] + {% else %} + join-or-log-in + {%- endif %} +{%- endblock %} +
+ +
+
+ +
+{% block content %} +{% endblock %} +
+ + + + + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1b35419 --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +# A Remarkbox theme is a python package with the following paths: +# +# template/-base.j2 +# static/theme/ +# +# The theme needs to be registered to the 'remarkbox.themes' +# entry_point group to make it loaded by the Remarkbox application. + +from setuptools import setup, find_packages + +setup(name='remarkbox_theme_meta', + version='0.2.0', + description='remarkbox theme for meta and faq', + classifiers=[ + "Programming Language :: Python", + "Framework :: Pyramid", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], + author='Russell Ballestrini', + author_email='russell@ballestrini.net', + url='http://russell.ballestrini.net', + keywords='remarkbox theme for meta and faq', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + entry_points = { + 'remarkbox.themes' : [ + 'meta = remarkbox_theme_meta' + ], + }, +)