initial commit; POC dev based off wp-73k theme
This commit is contained in:
commit
7325162871
50 changed files with 19419 additions and 0 deletions
BIN
assets/_root/android-chrome-192x192.png
Executable file
BIN
assets/_root/android-chrome-192x192.png
Executable file
Binary file not shown.
After ![]() (image error) Size: 12 KiB |
BIN
assets/_root/android-chrome-512x512.png
Executable file
BIN
assets/_root/android-chrome-512x512.png
Executable file
Binary file not shown.
After ![]() (image error) Size: 40 KiB |
BIN
assets/_root/favicon.ico
Executable file
BIN
assets/_root/favicon.ico
Executable file
Binary file not shown.
After Width: 48px | Height: 48px | Size: 15 KiB |
65
assets/css/_bs-colors.scss
Normal file
65
assets/css/_bs-colors.scss
Normal file
|
@ -0,0 +1,65 @@
|
|||
// Colors
|
||||
// -- now defined in bs-custom --
|
||||
// $primary: #e48663;
|
||||
// $secondary: #00b0b0;
|
||||
// $success: #99c24d;
|
||||
// $info: #b489c7;
|
||||
// $warning: #f4d35e;
|
||||
|
||||
// gray scale based off 'pale silver' #bebfb0 which was text color in Lester's original design
|
||||
// however, i think a lighter text is more readable, going 1 lighter for this design
|
||||
$white: #fff;
|
||||
$gray-010: #e3dfdd;
|
||||
$gray-100: #d1cac7;
|
||||
$gray-200: #beb5b0;
|
||||
$gray-300: #aca09a;
|
||||
$gray-400: #9a8b84;
|
||||
$gray-500: #87776e;
|
||||
$gray-600: #70635c;
|
||||
$gray-700: #5a4f49;
|
||||
$gray-750: #4f4540;
|
||||
$gray-800: #433b37;
|
||||
$gray-900: #2d2825;
|
||||
$black: #000;
|
||||
|
||||
// spaceblue is based on coolors.co 'space cadet' #212c40 which was bg color in Lester's original design
|
||||
// background will be spaceblue-800
|
||||
|
||||
$spaceblue-100: #aebcd5;
|
||||
$spaceblue-200: #93a6c8;
|
||||
$spaceblue-300: #788fba;
|
||||
$spaceblue-400: #5d79ac;
|
||||
$spaceblue-500: #4c6594;
|
||||
$spaceblue-600: #3e5379;
|
||||
$spaceblue-700: #31415e;
|
||||
$spaceblue-800: #212c40;
|
||||
$spaceblue-900: #151c28;
|
||||
|
||||
$light: $spaceblue-200;
|
||||
$dark: $spaceblue-800;
|
||||
|
||||
|
||||
// Create your own map
|
||||
$custom-colors: (
|
||||
"primary": $primary,
|
||||
"secondary": $secondary,
|
||||
"success": $success,
|
||||
"info": $info,
|
||||
"warning": $warning,
|
||||
"danger": $danger,
|
||||
"light": $light,
|
||||
"dark": $dark,
|
||||
"gray": $gray-600,
|
||||
"gray-dark": $gray-800,
|
||||
);
|
||||
|
||||
// Merge the maps
|
||||
$theme-colors: map-merge($theme-colors, $custom-colors);
|
||||
|
||||
// misc
|
||||
$navbar-dark-color: rgba($white, 0.75);
|
||||
$navbar-dark-hover-color: rgba($white, 0.9);
|
||||
$navbar-dark-active-color: $white;
|
||||
$navbar-dark-disabled-color: rgba($white, 0.45);
|
||||
$navbar-dark-toggler-border-color: rgba($white, 0.3);
|
||||
$component-active-bg: $primary;
|
45
assets/css/_bs-custom.scss
Normal file
45
assets/css/_bs-custom.scss
Normal file
|
@ -0,0 +1,45 @@
|
|||
/* Bootstrap custom variable overrides */
|
||||
|
||||
// Typography
|
||||
$font-size-base: 1.125rem;
|
||||
|
||||
// 'native font stack' for sans via https://getbootstrap.com/docs/5.0/content/reboot/#native-font-stack
|
||||
$font-family-sans-serif:
|
||||
// custom theme font
|
||||
Overpass,
|
||||
// Cross-platform generic font family (default user interface font)
|
||||
system-ui,
|
||||
// Safari for macOS and iOS (San Francisco)
|
||||
-apple-system, BlinkMacSystemFont,
|
||||
// Windows
|
||||
"Segoe UI",
|
||||
// Android
|
||||
Roboto,
|
||||
// Basic web fallback
|
||||
"Helvetica Neue", Arial,
|
||||
// Linux
|
||||
"Noto Sans",
|
||||
"Liberation Sans",
|
||||
Oxygen-Sans, Ubuntu,
|
||||
// Sans serif fallback
|
||||
sans-serif,
|
||||
// Emoji fonts
|
||||
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
|
||||
$font-family-base: $font-family-sans-serif;
|
||||
|
||||
// handbrush / special / emphasis / impact font stack
|
||||
$font-family-handbrush: "Permanent Marker", Besom, Fjord, Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
|
||||
|
||||
// Features
|
||||
$enable-shadows: true;
|
||||
$enable-negative-margins: true;
|
||||
|
||||
// init colors for some vars
|
||||
$primary: #51A39F;
|
||||
// $secondary: #9883E5;
|
||||
$secondary: #955E42;
|
||||
$success: #37B800;
|
||||
$info: #0075F2;
|
||||
$warning: #F9E900;
|
||||
$danger: #DD1C1A
|
50
assets/css/_bs-load.scss
Normal file
50
assets/css/_bs-load.scss
Normal file
|
@ -0,0 +1,50 @@
|
|||
/* Bootstrap custom variable overrides */
|
||||
@import "bs-custom";
|
||||
|
||||
// Required || Configuration
|
||||
@import "../../node_modules/bootstrap/scss/functions";
|
||||
@import "../../node_modules/bootstrap/scss/variables";
|
||||
|
||||
/* Bootstrap custom variable overrides */
|
||||
@import "bs-colors";
|
||||
|
||||
// Required || Configuration -- CONTINUED
|
||||
@import "../../node_modules/bootstrap/scss/mixins";
|
||||
@import "../../node_modules/bootstrap/scss/utilities";
|
||||
|
||||
// Optional || Layout & components
|
||||
@import "../../node_modules/bootstrap/scss/root";
|
||||
@import "../../node_modules/bootstrap/scss/reboot";
|
||||
@import "../../node_modules/bootstrap/scss/type";
|
||||
@import "../../node_modules/bootstrap/scss/images";
|
||||
@import "../../node_modules/bootstrap/scss/containers";
|
||||
@import "../../node_modules/bootstrap/scss/grid";
|
||||
// @import "../../node_modules/bootstrap/scss/tables";
|
||||
@import "../../node_modules/bootstrap/scss/forms";
|
||||
@import "../../node_modules/bootstrap/scss/buttons";
|
||||
@import "../../node_modules/bootstrap/scss/transitions";
|
||||
// @import "../../node_modules/bootstrap/scss/dropdown";
|
||||
// @import "../../node_modules/bootstrap/scss/button-group";
|
||||
@import "../../node_modules/bootstrap/scss/nav";
|
||||
@import "../../node_modules/bootstrap/scss/navbar";
|
||||
// @import "../../node_modules/bootstrap/scss/card";
|
||||
// @import "../../node_modules/bootstrap/scss/accordion";
|
||||
// @import "../../node_modules/bootstrap/scss/breadcrumb";
|
||||
// @import "../../node_modules/bootstrap/scss/pagination";
|
||||
// @import "../../node_modules/bootstrap/scss/badge";
|
||||
// @import "../../node_modules/bootstrap/scss/alert";
|
||||
// @import "../../node_modules/bootstrap/scss/progress";
|
||||
// @import "../../node_modules/bootstrap/scss/list-group";
|
||||
// @import "../../node_modules/bootstrap/scss/close";
|
||||
// @import "../../node_modules/bootstrap/scss/toasts";
|
||||
// @import "../../node_modules/bootstrap/scss/modal";
|
||||
// @import "../../node_modules/bootstrap/scss/tooltip";
|
||||
// @import "../../node_modules/bootstrap/scss/popover";
|
||||
// @import "../../node_modules/bootstrap/scss/carousel";
|
||||
// @import "../../node_modules/bootstrap/scss/spinners";
|
||||
|
||||
// Helpers
|
||||
@import "../../node_modules/bootstrap/scss/helpers";
|
||||
|
||||
// Utilities
|
||||
@import "../../node_modules/bootstrap/scss/utilities/api";
|
21
assets/css/_fonts.scss
Normal file
21
assets/css/_fonts.scss
Normal file
|
@ -0,0 +1,21 @@
|
|||
/* emphasis/special : Fontsource Permanent Marker */
|
||||
@import "../../node_modules/@fontsource/permanent-marker/400.css"; /* Normal (Regular) | normal */
|
||||
|
||||
|
||||
/* font-family-sans-serif : Fontsource Overpass */
|
||||
@import "../../node_modules/@fontsource/overpass/100.css"; /* Thin (Hairline) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/100-italic.css"; /* Thin (Hairline) | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/200.css"; /* Extra Light (Ultra Light) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/200-italic.css"; /* Extra Light (Ultra Light) | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/300.css"; /* Light | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/300-italic.css"; /* Light | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/400.css"; /* Normal (Regular) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/400-italic.css"; /* Normal (Regular) | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/600.css"; /* Semi Bold (Demi Bold) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/600-italic.css"; /* Semi Bold (Demi Bold) | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/700.css"; /* Bold | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/700-italic.css"; /* Bold | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/800.css"; /* Extra Bold (Ultra Bold) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/800-italic.css"; /* Extra Bold (Ultra Bold) | italic */
|
||||
@import "../../node_modules/@fontsource/overpass/900.css"; /* Black (Heavy) | normal */
|
||||
@import "../../node_modules/@fontsource/overpass/900-italic.css"; /* Black (Heavy) | italic */
|
84
assets/css/_nav-bar-help.scss
Normal file
84
assets/css/_nav-bar-help.scss
Normal file
|
@ -0,0 +1,84 @@
|
|||
// navbar-brand coloring
|
||||
.navbar-dark {
|
||||
a {
|
||||
&.navbar-brand {
|
||||
color: $gray-300;
|
||||
&:hover {
|
||||
color: $gray-300;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// navbar widget social icon coloring
|
||||
// #block-7 > ul > li.wp-social-link.wp-block-social-link > a
|
||||
.navbar-dark {
|
||||
.widget_block {
|
||||
ul {
|
||||
&.wp-block-social-links {
|
||||
&.is-style-logos-only {
|
||||
li {
|
||||
&.wp-social-link {
|
||||
&.wp-block-social-link {
|
||||
a {
|
||||
&.wp-block-social-link-anchor {
|
||||
color: $gray-300;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// navbar menu layout
|
||||
.navbar-expand-lg {
|
||||
.nav-item {
|
||||
// margin-left: 2px;
|
||||
a {
|
||||
&.nav-link {
|
||||
// padding: 0 0 0 6px;
|
||||
// margin: 8px 0 8px 0;
|
||||
// border-left: 6px transparent solid;
|
||||
&.active {
|
||||
// border-left: 6px $secondary solid;
|
||||
// border-bottom: none;
|
||||
}
|
||||
&:hover, &:active {
|
||||
// color: $primary !important;
|
||||
// border-left: 6px $secondary solid;
|
||||
// border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
.navbar-expand-lg {
|
||||
.nav-item {
|
||||
// margin-left: 0;
|
||||
a {
|
||||
&.nav-link {
|
||||
// padding: 0 0 2px 0;
|
||||
// margin: 0 12px 0 12px;
|
||||
// border-left: none;
|
||||
// border-top: 6px transparent solid;
|
||||
// border-bottom: 6px transparent solid;
|
||||
&.active {
|
||||
// border-left: none;
|
||||
// border-bottom: 6px $secondary solid;
|
||||
}
|
||||
&:hover, &:active {
|
||||
// color: $primary !important;
|
||||
// border-left: none;
|
||||
// border-bottom: 6px $secondary solid;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
56
assets/css/_nav-burger.scss
Normal file
56
assets/css/_nav-burger.scss
Normal file
|
@ -0,0 +1,56 @@
|
|||
/* Hamburger settings overrides */
|
||||
$hamburger-padding-x: 0.95rem !default;
|
||||
$hamburger-padding-y: 0.625rem !default;
|
||||
$hamburger-layer-width: 1.5rem !default;
|
||||
$hamburger-layer-height: 2px !default;
|
||||
$hamburger-layer-spacing: 6px !default;
|
||||
// * skipping default color, using color from bootstrap instead, below
|
||||
// $hamburger-layer-color: rgba(0, 0, 0, 0.55) !default;
|
||||
$hamburger-layer-border-radius: 0.25rem !default;
|
||||
$hamburger-hover-opacity: 0.7 !default;
|
||||
// * skipping default color, using color from bootstrap instead, below
|
||||
// $hamburger-active-layer-color: $hamburger-layer-color !default;
|
||||
$hamburger-active-hover-opacity: $hamburger-hover-opacity !default;
|
||||
|
||||
/* import hamburgers sass */
|
||||
@import "../../node_modules/hamburgers/_sass/hamburgers/hamburgers.scss";
|
||||
|
||||
/* correct colors to match bootstrap defaults */
|
||||
.navbar-light {
|
||||
.hamburger {
|
||||
&.navbar-toggler {
|
||||
border: 1px $navbar-light-toggler-border-color solid !important;
|
||||
.hamburger-inner {
|
||||
&,
|
||||
&::before,
|
||||
&::after {
|
||||
background-color: $navbar-light-color;
|
||||
}
|
||||
}
|
||||
&.is-active {
|
||||
.hamburger-inner::after {
|
||||
background-color: $navbar-light-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-dark {
|
||||
.hamburger {
|
||||
&.navbar-toggler {
|
||||
border: 1px $navbar-dark-toggler-border-color solid !important;
|
||||
.hamburger-inner {
|
||||
&,
|
||||
&::before,
|
||||
&::after {
|
||||
background-color: $navbar-dark-color;
|
||||
}
|
||||
}
|
||||
&.is-active {
|
||||
.hamburger-inner::after {
|
||||
background-color: $navbar-dark-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
39
assets/css/_svg-icons.scss
Normal file
39
assets/css/_svg-icons.scss
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
SVG ICON SYSTEM
|
||||
per https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
|
||||
*/
|
||||
.icon {
|
||||
display: inline-flex;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.icon svg,
|
||||
.icon img {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.icon.baseline svg,
|
||||
.icon img {
|
||||
top: 0.15em;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
// for navbar-brand logo, could be used for other non-icon SVGs with an extra class to controll the size
|
||||
.logo {
|
||||
display: inline-flex;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.logo svg,
|
||||
.logo img {
|
||||
height: 5.3rem;
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.logo.baseline svg,
|
||||
.logo img {
|
||||
top: 0.15em;
|
||||
position: relative;
|
||||
}
|
279
assets/css/app.scss
Normal file
279
assets/css/app.scss
Normal file
|
@ -0,0 +1,279 @@
|
|||
/* Fonts */
|
||||
@import "fonts";
|
||||
|
||||
/* Load Bootstrap v5 and customizations */
|
||||
@import "bs-load";
|
||||
|
||||
/*SVG ICON SYSTEM*/
|
||||
@import "svg-icons";
|
||||
|
||||
/* Navbar toggler icon override */
|
||||
@import "nav-burger";
|
||||
|
||||
/* Navbar custom styling */
|
||||
@import "nav-bar-help";
|
||||
|
||||
/* main */
|
||||
html,
|
||||
body {
|
||||
color: $gray-100;
|
||||
background-color: $spaceblue-800;
|
||||
height: 100%;
|
||||
}
|
||||
// a {
|
||||
// color: rgba($white, 0.75);
|
||||
// // border-bottom: $gray-600 2px solid;
|
||||
// // text-decoration: none;
|
||||
// text-decoration-color: $gray-600;
|
||||
// &.navbar-brand,
|
||||
// &.nav-link {
|
||||
// border-bottom: none;
|
||||
// }
|
||||
// &:visited {
|
||||
// color: $info;
|
||||
// .post-title & {
|
||||
// color: $gray-100;
|
||||
// }
|
||||
// }
|
||||
// &:hover {
|
||||
// color: $primary;
|
||||
// // text-decoration: none;
|
||||
// // border-bottom: $secondary 3px solid;
|
||||
// text-decoration-color: $secondary;
|
||||
// &.navbar-brand {
|
||||
// border-bottom: none;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
.wp-block-separator {
|
||||
border-top: none !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* more */
|
||||
.border-gray-900 {
|
||||
border-color: $gray-900 !important;
|
||||
}
|
||||
.text-gray-200 {
|
||||
color: $gray-200;
|
||||
}
|
||||
.text-gray-300 {
|
||||
color: $gray-300;
|
||||
}
|
||||
.text-gray-400 {
|
||||
color: $gray-400;
|
||||
}
|
||||
.text-gray-500 {
|
||||
color: $gray-500;
|
||||
}
|
||||
.border-10 {
|
||||
border-width: 10px !important;
|
||||
}
|
||||
.border-20 {
|
||||
border-width: 20px !important;
|
||||
}
|
||||
.font-handbrush {
|
||||
font-family: $font-family-handbrush;
|
||||
}
|
||||
.fw-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
.fw-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
.fs-larger {
|
||||
font-size: larger;
|
||||
}
|
||||
.fs-smaller {
|
||||
font-size: smaller;
|
||||
}
|
||||
.tek-fixed-footer {
|
||||
@extend .bg-dark;
|
||||
@extend .bottom-0;
|
||||
@extend .end-0;
|
||||
@extend .position-fixed;
|
||||
font-size: 14px !important;
|
||||
border-top-left-radius: 0.3rem !important;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tek-subtitle {
|
||||
@extend .fs-5;
|
||||
@extend .font-monospace;
|
||||
@extend .text-gray-300;
|
||||
@extend .mb-0;
|
||||
// margin-top: -0.5rem;
|
||||
}
|
||||
.tek-border-bottom-gray-dashed {
|
||||
@extend .border-bottom;
|
||||
// @extend .border-gray;
|
||||
border-bottom-color: $gray-500 !important;
|
||||
border-bottom-style: dashed !important;
|
||||
}
|
||||
|
||||
/* front page styles */
|
||||
#tek-front-page img.wp-post-image {
|
||||
@extend .img-fluid;
|
||||
@extend .border;
|
||||
// @extend .border-20;
|
||||
@extend .border-gray-900;
|
||||
@extend .rounded-2;
|
||||
border-width: 18px !important;
|
||||
width: 100%;
|
||||
}
|
||||
#tek-front-page h2, header h2 {
|
||||
@extend .fs-2;
|
||||
@extend .fw-600;
|
||||
@extend .mb-0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* social icons */
|
||||
#social-icons .link-light {
|
||||
border-bottom: none;
|
||||
color: $gray-100;
|
||||
&:hover {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
|
||||
/* blockquote handling */
|
||||
blockquote {
|
||||
&.wp-block-quote {
|
||||
@extend .border-start;
|
||||
@extend .border-gray;
|
||||
@extend .border-5;
|
||||
@extend .ms-0;
|
||||
@extend .my-4;
|
||||
@extend .ps-3;
|
||||
@extend .py-2;
|
||||
background-color: $gray-750;
|
||||
&.tek-bq-lg {
|
||||
p {
|
||||
font-size: 1.375rem;
|
||||
}
|
||||
}
|
||||
p {
|
||||
@extend .blockquote;
|
||||
font-size: 1em;
|
||||
&:last-of-type {
|
||||
@extend .my-0;
|
||||
@extend .py-0;
|
||||
}
|
||||
}
|
||||
cite {
|
||||
@extend .blockquote-footer;
|
||||
@extend .text-gray-300;
|
||||
@extend .my-0;
|
||||
@extend .py-0;
|
||||
font-size: 0.85em;
|
||||
font-style: normal;
|
||||
}
|
||||
:last-child {
|
||||
@extend .py-1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* blog */
|
||||
.post-title a {
|
||||
color: $gray-100;
|
||||
text-decoration: none;
|
||||
border-bottom: none;
|
||||
&:hover {
|
||||
color: $primary;
|
||||
// border-bottom: $secondary 3px solid;
|
||||
text-decoration: underline;
|
||||
text-decoration-color: $secondary;
|
||||
}
|
||||
}
|
||||
.post-lede,
|
||||
.post-body {
|
||||
h2, h3, h4, h5, h6 {
|
||||
color: $gray-200;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
.post li {
|
||||
line-height: 1.75rem;
|
||||
}
|
||||
.more-link {
|
||||
@extend .fs-6;
|
||||
}
|
||||
|
||||
/* widget styling */
|
||||
#footer-widgets {
|
||||
background-color: $gray-750;
|
||||
border-radius: .5em;
|
||||
.widgettitle {
|
||||
@extend .fs-4;
|
||||
}
|
||||
.wp-block-group {
|
||||
@extend .px-3;
|
||||
@extend .py-3;
|
||||
max-width: 25rem;
|
||||
}
|
||||
ul {
|
||||
padding-inline-start: 2rem;
|
||||
}
|
||||
.wp-block-loginout {
|
||||
display: list-item;
|
||||
margin-left: 2rem;
|
||||
list-style-type: disc;
|
||||
}
|
||||
}
|
||||
.wp-block-tag-cloud {
|
||||
@extend .mb-0;
|
||||
}
|
||||
.search-form .form-control {
|
||||
color: $gray-100 !important;
|
||||
background-color: $gray-800 !important;
|
||||
border-color: $gray-500;
|
||||
}
|
||||
.search-form .form-control:focus {
|
||||
border-color: $input-focus-border-color;
|
||||
}
|
||||
.form-control::-ms-clear,
|
||||
input.form-control::-ms-clear,
|
||||
.form-control::-ms-reveal,
|
||||
input.form-control::-ms-reveal { display: none; }
|
||||
.form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
|
||||
color: $gray-500 !important;
|
||||
}
|
||||
.form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
||||
color: $gray-500 !important;
|
||||
opacity: 1;
|
||||
}
|
||||
.form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
|
||||
color: $gray-500 !important;
|
||||
opacity: 1;
|
||||
}
|
||||
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
|
||||
color: $gray-500 !important;
|
||||
}
|
||||
.form-control::-ms-input-placeholder { /* Microsoft Edge */
|
||||
color: $gray-500 !important;
|
||||
}
|
||||
.form-control::placeholder { /* Most modern browsers support this now. */
|
||||
color: $gray-500 !important;
|
||||
}
|
||||
.search-form {
|
||||
.btn {
|
||||
padding: .25rem .75rem;
|
||||
&.btn-outline-light {
|
||||
color: $gray-300;
|
||||
border-color: $gray-500;
|
||||
&:hover {
|
||||
color: $primary;
|
||||
background-color: inherit;
|
||||
border-color: $secondary;
|
||||
}
|
||||
}
|
||||
.icon {
|
||||
font-size: 1.375rem;
|
||||
margin-top: 1px;
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/images/40x_rainbow.jpg
Normal file
BIN
assets/images/40x_rainbow.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 146 KiB |
BIN
assets/images/40x_unicorn-300.png
Normal file
BIN
assets/images/40x_unicorn-300.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 92 KiB |
BIN
assets/images/apple-touch-icon.png
Executable file
BIN
assets/images/apple-touch-icon.png
Executable file
Binary file not shown.
After ![]() (image error) Size: 10 KiB |
BIN
assets/images/cat-roof_portrait.webp
Executable file
BIN
assets/images/cat-roof_portrait.webp
Executable file
Binary file not shown.
After ![]() (image error) Size: 43 KiB |
BIN
assets/images/favicon-16x16.png
Executable file
BIN
assets/images/favicon-16x16.png
Executable file
Binary file not shown.
After ![]() (image error) Size: 482 B |
BIN
assets/images/favicon-32x32.png
Executable file
BIN
assets/images/favicon-32x32.png
Executable file
Binary file not shown.
After ![]() (image error) Size: 1.2 KiB |
1
assets/images/site.webmanifest
Executable file
1
assets/images/site.webmanifest
Executable file
|
@ -0,0 +1 @@
|
|||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
12
assets/js/_hamburger-helper.js
Normal file
12
assets/js/_hamburger-helper.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const togglerBtn = document.getElementById("navbarSupportedContentToggler");
|
||||
const navbarContent = document.getElementById("navbarSupportedContent");
|
||||
|
||||
navbarContent.addEventListener("show.bs.collapse", () => {
|
||||
console.log("opening navbar content");
|
||||
togglerBtn.classList.toggle("is-active");
|
||||
});
|
||||
|
||||
navbarContent.addEventListener("hide.bs.collapse", () => {
|
||||
console.log("closing navbar content");
|
||||
togglerBtn.classList.toggle("is-active");
|
||||
});
|
46
assets/js/main.js
Normal file
46
assets/js/main.js
Normal file
|
@ -0,0 +1,46 @@
|
|||
// Import SCSS
|
||||
import '../css/app.scss'
|
||||
|
||||
// Import icons for sprite-loader
|
||||
// // navbar brand icon
|
||||
// import "../../node_modules/@mdi/svg/svg/desktop-classic.svg"; // brand
|
||||
import "../raw/rdnyc-logo.svg"; // rdnyc logo
|
||||
// other:
|
||||
import "../../node_modules/@mdi/svg/svg/magnify.svg"; // search form button icon
|
||||
// import "../../node_modules/@mdi/svg/svg/home.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/information.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/account.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/briefcase-account.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/zip-disk.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/typewriter.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/calendar-clock.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/tag-multiple.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/rss.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/account-hard-hat.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/open-in-new.svg";
|
||||
// social
|
||||
// import "../../node_modules/@mdi/svg/svg/linkedin.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/github.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/key-variant.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/goodreads.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/twitter.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/facebook.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/instagram.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/steam.svg";
|
||||
// import "../../node_modules/@mdi/svg/svg/discord.svg";
|
||||
|
||||
// Import Bootstrap JS
|
||||
import 'bootstrap/js/dist/collapse';
|
||||
import 'bootstrap/js/dist/alert';
|
||||
import 'bootstrap/js/dist/button';
|
||||
import 'bootstrap/js/dist/dropdown';
|
||||
|
||||
// import navbar burger code
|
||||
import "./_hamburger-helper";
|
||||
|
||||
// highlight any code blocks tagged with class 'to-highlight'
|
||||
document.addEventListener('DOMContentLoaded', (event) => {
|
||||
document.querySelectorAll('code.to-highlight').forEach((el) => {
|
||||
hljs.highlightElement(el);
|
||||
});
|
||||
});
|
172
assets/raw/rdnyc-logo.svg
Executable file
172
assets/raw/rdnyc-logo.svg
Executable file
|
@ -0,0 +1,172 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 224 85" style="enable-background:new 0 0 224 85;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#BEB5B0;}
|
||||
.st1{enable-background:new ;}
|
||||
.st2{fill:#BEB5B0;}
|
||||
</style>
|
||||
<title>Group 42</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Desktop">
|
||||
<g id="Default-Home" transform="translate(-61.000000, -63.000000)">
|
||||
<g id="Group-42" transform="translate(61.000000, 60.000000)">
|
||||
<g id="Group-41" transform="translate(0.000000, 3.000000)">
|
||||
<path id="Fill-1" class="st0" d="M40.6,11.3c-16,0-29,13.1-29,29.1c0,16.1,13,29.1,29,29.1s29-13.1,29-29.1
|
||||
C69.5,24.4,56.6,11.3,40.6,11.3 M40.6,64.3c-13.1,0-23.7-10.7-23.7-23.9s10.6-23.9,23.7-23.9s23.7,10.7,23.7,23.9
|
||||
S53.7,64.3,40.6,64.3"/>
|
||||
<path id="Fill-3" class="st0" d="M50.4,40.4c0-2.9-1.3-5.5-3.3-7.3c1.8,2.9,1.6,5.3,1.3,6.3c-0.5,2-2.1,3.5-3.9,3.9
|
||||
c-0.3,0.1-0.5,0.1-0.7,0.1c-1.2,0-2.3-0.5-3.2-1.5c-0.9,0.1-3.3,0.5-3.6,2.3c-0.2,0.9,0.4,2,1.4,2.8c1,0.8,3.7,2.4,8.9,0.9
|
||||
C49.2,45.9,50.4,43.3,50.4,40.4"/>
|
||||
<path id="Fill-5" class="st0" d="M37.4,48c-1.4-1.2-2.1-2.7-1.8-4.2c0.5-2.7,3.4-3.4,4.7-3.4c0.1-1.1,0-3.6-2.2-4.3
|
||||
c-3.5-0.9-6.9,3-7.4,3.8v0.5c0,5.4,4.4,9.9,9.8,9.9c1.1,0,2.2-0.2,3.2-0.5h-0.6C40,49.8,38.2,48.7,37.4,48"/>
|
||||
<path id="Fill-7" class="st0" d="M31.2,37.3c1.6-1.5,4.3-3.3,7.3-2.5c3.1,0.8,3.4,4.2,3.2,6.1c0.7,0.8,1.6,1.2,2.6,1
|
||||
c1.3-0.3,2.3-1.4,2.8-2.8c0.6-2.4-0.6-5.4-3.6-8.1c-0.9-0.3-1.9-0.5-2.9-0.5C36.3,30.5,32.6,33.4,31.2,37.3"/>
|
||||
<path id="Fill-9" class="st0" d="M40.6,9.9c1.9,0,3.8,0.2,5.6,0.5c0.1-0.4,0.2-0.6,0.2-1.1c0-1.8-1.4-3.3-3.2-3.3
|
||||
c-0.2,0-0.5,0-0.6,0.1c0.5-0.5,1-1.4,1-2.3c0-1.8-1.4-3.3-3.2-3.3c-1.8,0-3.2,1.5-3.2,3.3c0,0.9,0.4,1.7,1,2.3
|
||||
c-0.2,0-0.4-0.1-0.6-0.1c-1.8,0-3.2,1.5-3.2,3.3c0,0.5,0.1,0.8,0.2,1.2C36.3,10,38.4,9.9,40.6,9.9 M40.2,7.1
|
||||
c0.2,0,0.5,0,0.6-0.1c-0.3,0.3-0.5,0.5-0.6,0.9c-0.2-0.4-0.4-0.6-0.6-0.9C39.9,7.1,40,7.1,40.2,7.1"/>
|
||||
<path id="Fill-11" class="st0" d="M64.1,21.2c1.4-0.4,2.4-1.6,2.4-3.2c0-1.8-1.4-3.3-3.2-3.3c-1.5,0-2.7,1-3.1,2.4
|
||||
C61.7,18.4,63,19.7,64.1,21.2"/>
|
||||
<path id="Fill-13" class="st0" d="M78,37.3c-0.9,0-1.7,0.4-2.3,1c0-0.2,0.1-0.4,0.1-0.6c0-1.8-1.4-3.3-3.2-3.3
|
||||
c-0.8,0-1.5,0.3-2.2,0.8c0.3,1.6,0.5,3.4,0.5,5.2c0.1,0.1,0.2,0.1,0.3,0.2c-0.1,0-0.2,0.1-0.3,0.2c0,1.7-0.2,3.4-0.5,5.2
|
||||
c0.5,0.5,1.4,0.8,2.2,0.8c1.8,0,3.2-1.5,3.2-3.3c0-0.2,0-0.5-0.1-0.6c0.5,0.5,1.4,1,2.3,1c1.8,0,3.2-1.5,3.2-3.3
|
||||
C81.3,38.6,79.8,37.3,78,37.3 M74.9,41.1c-0.3-0.3-0.5-0.5-0.9-0.6c0.4-0.2,0.6-0.4,0.9-0.6c0,0.2-0.1,0.4-0.1,0.6
|
||||
C74.9,40.7,74.9,40.9,74.9,41.1"/>
|
||||
<path id="Fill-15" class="st0" d="M64,59.8c-1.3,1.5-2.6,2.9-4.1,4.2c0.5,1.2,1.6,2.1,3,2.1c1.8,0,3.2-1.5,3.2-3.3
|
||||
C66.1,61.5,65.2,60.3,64,59.8"/>
|
||||
<path id="Fill-17" class="st0" d="M40.6,70.9c-2,0-4-0.2-6-0.5c-0.1,0.3-0.2,0.6-0.2,1c0,1.8,1.4,3.3,3.2,3.3
|
||||
c0.2,0,0.5,0,0.6-0.1c-0.5,0.5-1,1.4-1,2.3c0,1.8,1.4,3.3,3.2,3.3s3.2-1.5,3.2-3.3c0-0.9-0.4-1.7-1-2.3c0.2,0,0.4,0.1,0.6,0.1
|
||||
c1.8,0,3.2-1.5,3.2-3.3c0-0.4-0.1-0.7-0.2-1C44.6,70.7,42.6,70.9,40.6,70.9 M40.6,73.5c-0.2,0-0.5,0-0.6,0.1
|
||||
c0.3-0.3,0.5-0.5,0.6-0.9c0.2,0.4,0.4,0.6,0.6,0.9C41,73.6,40.8,73.5,40.6,73.5"/>
|
||||
<path id="Fill-19" class="st0" d="M17.1,59.8c-1.3,0.5-2.1,1.6-2.1,3c0,1.8,1.4,3.3,3.2,3.3c1.4,0,2.5-0.9,3-2.1
|
||||
C19.8,62.7,18.4,61.3,17.1,59.8"/>
|
||||
<path id="Fill-21" class="st0" d="M10.6,34.9c-0.5-0.5-1.2-0.6-2-0.6c-1.8,0-3.2,1.5-3.2,3.3c0,0.2,0,0.5,0.1,0.6
|
||||
c-0.5-0.5-1.4-1-2.3-1c-1.8,0-3.2,1.5-3.2,3.3c0,1.8,1.4,3.3,3.2,3.3c0.9,0,1.7-0.4,2.3-1c0,0.2-0.1,0.4-0.1,0.6
|
||||
c0,1.8,1.4,3.3,3.2,3.3c0.7,0,1.4-0.3,2-0.6c-0.4-1.7-0.5-3.6-0.5-5.4C10.2,38.5,10.4,36.7,10.6,34.9 M6.5,41
|
||||
c0-0.2,0.1-0.4,0.1-0.6c0-0.3,0-0.5-0.1-0.6C6.8,40,7,40.2,7.4,40.3C7,40.5,6.7,40.8,6.5,41"/>
|
||||
<path id="Fill-23" class="st0" d="M16.8,21.6c1.2-1.5,2.4-2.8,3.9-4.1c-0.5-1.4-1.6-2.3-3.1-2.3c-1.8,0-3.2,1.5-3.2,3.3
|
||||
C14.3,19.9,15.4,21.2,16.8,21.6"/>
|
||||
<path id="Fill-25" class="st0" d="M43.1,28.5V18.1c-0.8-0.1-1.7-0.2-2.5-0.2c-0.9,0-1.7,0.1-2.6,0.2v10.2
|
||||
c0.8-0.2,1.7-0.3,2.5-0.3C41.4,28.2,42.3,28.3,43.1,28.5"/>
|
||||
<path id="Fill-27" class="st0" d="M54.4,22.8l-7.2,7.3c1.4,0.9,2.7,2.2,3.6,3.6l7.2-7.3C56.9,25.1,55.7,23.9,54.4,22.8"/>
|
||||
<path id="Fill-29" class="st0" d="M52.8,40.4c0,0.8-0.1,1.7-0.3,2.4h10.2c0.1-0.8,0.2-1.7,0.2-2.5c0-0.9-0.1-1.7-0.2-2.5H52.5
|
||||
C52.7,38.7,52.8,39.5,52.8,40.4"/>
|
||||
<path id="Fill-31" class="st0" d="M47.3,50.8l7.1,7.2c1.4-1.1,2.5-2.3,3.6-3.6l-7.1-7.2C49.9,48.6,48.7,49.8,47.3,50.8"/>
|
||||
<path id="Fill-33" class="st0" d="M38,52.5v10.2c0.8,0.1,1.7,0.2,2.5,0.2c0.9,0,1.7-0.1,2.5-0.2V52.5c-0.8,0.2-1.7,0.3-2.5,0.3
|
||||
C39.7,52.8,38.8,52.7,38,52.5"/>
|
||||
<path id="Fill-35" class="st0" d="M30.3,47.1l-7.1,7.2c1.1,1.4,2.3,2.5,3.6,3.6l7.1-7.2C32.4,49.8,31.2,48.6,30.3,47.1"/>
|
||||
<path id="Fill-37" class="st0" d="M28.3,40.4c0-0.9,0.1-1.8,0.3-2.6H18.4c-0.1,0.8-0.2,1.7-0.2,2.5c0,0.9,0.1,1.7,0.2,2.5h10.1
|
||||
C28.4,42.1,28.3,41.3,28.3,40.4"/>
|
||||
<path id="Fill-39" class="st0" d="M33.9,30.1l-7.2-7.3c-1.4,1.1-2.5,2.3-3.6,3.6l7.2,7.3C31.3,32.3,32.5,31.1,33.9,30.1"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M102.8,24V7.2h8.2c2,0,3.5,0.5,4.4,1.5c0.9,1,1.4,2.3,1.4,3.9c0,1-0.3,2-0.8,2.9c-0.5,0.9-1.3,1.6-2.2,2
|
||||
l3.1,6.5h-4.1l-3-5.9h-3.2V24H102.8z M106.4,14.6h4.6c1.3,0,1.9-0.7,1.9-2c0-0.6-0.1-1-0.4-1.4c-0.3-0.4-0.8-0.6-1.5-0.6h-4.6
|
||||
V14.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M119.7,24V7.2h12.1v3.5h-8.4v3h4.7v3.5h-4.7v3.5h8.9V24H119.7z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M140.7,24.2c-1.3,0-2.4-0.3-3.3-0.8c-1-0.5-1.7-1.2-2.2-2c-0.5-0.8-0.9-1.8-1.2-2.7c-0.2-1-0.4-2-0.4-3.1
|
||||
c0-1,0.1-2,0.4-3c0.3-1,0.6-1.9,1.2-2.8c0.5-0.9,1.3-1.6,2.2-2.1c1-0.5,2.1-0.8,3.3-0.8c1.5,0,2.8,0.4,3.9,1.2
|
||||
c1.1,0.8,1.8,1.7,2.3,2.9l-3.3,1.5c-0.5-0.7-0.9-1.2-1.3-1.5c-0.4-0.3-0.9-0.5-1.6-0.5c-0.6,0-1.1,0.2-1.6,0.5
|
||||
c-0.4,0.3-0.8,0.7-1,1.2c-0.2,0.5-0.4,1.1-0.5,1.6c-0.1,0.6-0.2,1.2-0.2,1.8c0,0.8,0.1,1.6,0.3,2.4c0.2,0.8,0.6,1.4,1.1,1.9
|
||||
c0.5,0.5,1.1,0.8,1.9,0.8c1,0,2-0.7,2.9-2.2l3.3,1.2C145.6,22.8,143.5,24.2,140.7,24.2z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M155.8,24.3c-1.1,0-2-0.2-2.9-0.5c-0.9-0.3-1.6-0.8-2.1-1.4c-0.6-0.6-1-1.2-1.4-2s-0.6-1.5-0.8-2.3
|
||||
c-0.2-0.8-0.3-1.6-0.3-2.5c0-0.9,0.1-1.7,0.3-2.5c0.2-0.8,0.4-1.6,0.8-2.3s0.8-1.4,1.4-2c0.6-0.6,1.3-1,2.1-1.4
|
||||
c0.9-0.3,1.8-0.5,2.9-0.5c1.3,0,2.4,0.3,3.4,0.8s1.8,1.2,2.3,2c0.6,0.9,1,1.8,1.3,2.8s0.4,2,0.4,3.1c0,1.1-0.1,2.1-0.4,3.1
|
||||
c-0.3,1-0.7,1.9-1.3,2.8c-0.6,0.9-1.3,1.5-2.3,2S157.1,24.3,155.8,24.3z M155.8,20.8c0.8,0,1.5-0.3,2.1-0.9c0.6-0.6,1-1.2,1.2-2
|
||||
c0.2-0.7,0.3-1.5,0.3-2.3c0-0.9-0.1-1.7-0.3-2.4c-0.2-0.7-0.6-1.4-1.2-1.9c-0.6-0.6-1.3-0.8-2.2-0.8c-0.9,0-1.6,0.3-2.2,0.9
|
||||
c-0.6,0.6-1,1.2-1.2,2s-0.3,1.5-0.3,2.4c0,0.6,0.1,1.2,0.2,1.8c0.1,0.6,0.3,1.1,0.6,1.6c0.3,0.5,0.7,0.9,1.2,1.2
|
||||
S155.2,20.8,155.8,20.8z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M167.9,24l-6-16.8h4l3.6,10.6c0,0.1,0.1,0.3,0.1,0.5l0.1,0.3c0-0.1,0.1-0.4,0.2-0.7l3.6-10.6h3.9l-6,16.8
|
||||
H167.9z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M178.5,24V7.2h12.1v3.5h-8.4v3h4.7v3.5h-4.7v3.5h8.9V24H178.5z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M193.8,24V7.2h8.2c2,0,3.5,0.5,4.4,1.5c0.9,1,1.4,2.3,1.4,3.9c0,1-0.3,2-0.8,2.9c-0.5,0.9-1.3,1.6-2.2,2
|
||||
l3.1,6.5h-4.1l-3-5.9h-3.2V24H193.8z M197.4,14.6h4.6c1.3,0,1.9-0.7,1.9-2c0-0.6-0.1-1-0.4-1.4c-0.3-0.4-0.8-0.6-1.5-0.6h-4.6
|
||||
V14.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M213.6,24v-6.5l-6.4-10.3h4.1l4.1,6.4l4.1-6.4h4.1l-6.4,10.3V24H213.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M102.8,34.2h6.2c1.4,0,2.7,0.2,3.7,0.7c1.1,0.5,1.9,1.1,2.6,1.9c0.6,0.8,1.1,1.7,1.4,2.7
|
||||
c0.3,1,0.5,2,0.5,3.1c0,0.8-0.1,1.6-0.3,2.3s-0.5,1.5-0.9,2.3s-0.9,1.4-1.6,1.9c-0.6,0.6-1.4,1-2.4,1.3c-1,0.3-2,0.5-3.2,0.5
|
||||
h-6.1V34.2z M109.3,47.5c1.4,0,2.4-0.5,3.1-1.5c0.7-1,1-2.1,1-3.4c0-1.3-0.3-2.5-1-3.5c-0.7-1-1.6-1.5-2.9-1.5h-3.1v9.9H109.3z"
|
||||
/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M130.6,51v-6.9h-6.7V51h-3.6V34.2h3.6v6.4h6.7v-6.4h3.7V51H130.6z"/>
|
||||
<path class="st2" d="M149.2,51l-1.2-3.3h-6.3l-1.2,3.3h-4l6.6-16.8h3.5l6.6,16.8H149.2z M146.7,44.4l-1.4-3.6
|
||||
c-0.2-0.5-0.4-1-0.5-1.4c-0.1,0.3-0.2,0.7-0.5,1.4l-1.4,3.6H146.7z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M155.3,51V34.2h8.2c2,0,3.5,0.5,4.4,1.5c0.9,1,1.4,2.3,1.4,3.9c0,1-0.3,2-0.8,2.9s-1.3,1.6-2.2,2l3.1,6.5
|
||||
h-4.1l-3-5.9h-3.2V51H155.3z M158.9,41.6h4.6c1.3,0,1.9-0.7,1.9-2c0-0.6-0.1-1-0.4-1.4c-0.3-0.4-0.8-0.6-1.5-0.6h-4.6V41.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M188.2,51h-3.6v-8.3c0-0.2,0-0.3,0-0.5c-0.1,0.2-0.2,0.4-0.2,0.5l-4.1,8.7l-4.1-8.6c0-0.1-0.1-0.3-0.2-0.5
|
||||
v0.5V51h-3.6V34.2h3.7l3.9,8.6c0.1,0.3,0.2,0.6,0.4,1.1c0.2-0.4,0.3-0.8,0.4-1.1l4-8.6h3.4V51z"/>
|
||||
<path class="st2" d="M203.1,51l-1.2-3.3h-6.3l-1.2,3.3h-4l6.6-16.8h3.5l6.6,16.8H203.1z M200.6,44.4l-1.4-3.6
|
||||
c-0.2-0.5-0.4-1-0.5-1.4c-0.1,0.3-0.2,0.7-0.5,1.4l-1.4,3.6H200.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M112.8,84h-1.3l-5-8c-0.2-0.3-0.3-0.6-0.4-0.8c0,0.3,0,0.6,0,0.8v8h-1.4V72.8h1.4l5,8
|
||||
c0.2,0.3,0.3,0.6,0.5,0.8c0-0.4,0-0.7,0-0.8v-8h1.4V84z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M118.8,84.2c-1.1,0-2-0.4-2.6-1.2c-0.7-0.8-1-1.8-1-3.1c0-1.3,0.3-2.4,1-3.1c0.7-0.8,1.5-1.1,2.6-1.1
|
||||
c1,0,1.8,0.3,2.4,1s1,1.6,1,2.9c0,0.3,0,0.6,0,0.9h-5.5c0.1,0.7,0.3,1.3,0.7,1.8c0.4,0.5,0.9,0.7,1.5,0.7c0.7,0,1.3-0.2,1.8-0.7
|
||||
l0.8,0.9C120.7,83.8,119.9,84.2,118.8,84.2z M116.6,79.3h4.2c0-0.8-0.2-1.5-0.6-1.8c-0.4-0.4-0.8-0.6-1.4-0.6
|
||||
c-0.6,0-1.1,0.2-1.6,0.6C116.9,77.9,116.6,78.5,116.6,79.3z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M125.3,84l-2.1-8.2h1.4l1.2,5.5c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0-0.1,0.1-0.4,0.2-0.9l1.5-5.5
|
||||
h1.2l1.5,5.5l0.2,0.9c0-0.1,0.1-0.2,0.1-0.4c0-0.2,0.1-0.4,0.1-0.4l1.2-5.5h1.4l-2.1,8.2h-1.2l-1.5-4.8
|
||||
c-0.1-0.5-0.3-0.8-0.3-1.1c-0.1,0.4-0.2,0.8-0.3,1.1l-1.5,4.8H125.3z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M141.6,84v-4.4l-3.8-6.8h1.6l2.9,5.4l3-5.4h1.5l-3.8,6.8V84H141.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M152.1,83c-0.7,0.8-1.5,1.1-2.6,1.1s-2-0.4-2.6-1.1c-0.7-0.8-1-1.8-1-3.1c0-1.3,0.3-2.4,1-3.1
|
||||
c0.7-0.8,1.5-1.1,2.6-1.1s2,0.4,2.6,1.1c0.7,0.8,1,1.8,1,3.1C153.1,81.2,152.8,82.3,152.1,83z M147.9,82.1
|
||||
c0.4,0.5,0.9,0.8,1.6,0.8s1.2-0.3,1.6-0.8c0.4-0.5,0.6-1.3,0.6-2.2c0-0.9-0.2-1.7-0.6-2.2c-0.4-0.5-0.9-0.8-1.6-0.8
|
||||
s-1.2,0.3-1.6,0.8s-0.6,1.3-0.6,2.2C147.3,80.8,147.5,81.6,147.9,82.1z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M155.3,84v-8.2h1.4v1.1c0.4-0.8,1-1.3,1.9-1.3c0.5,0,0.9,0.1,1.3,0.4l-0.2,1.3c-0.3-0.2-0.7-0.4-1.2-0.4
|
||||
c-0.5,0-0.9,0.2-1.3,0.6c-0.4,0.4-0.6,1-0.6,1.8V84H155.3z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M168,84h-1.5l-2.5-4.9l-1.2,1.2V84h-1.4V73.1l1.4-0.7v6.2l2.7-2.8h1.7l-2.1,2.2L168,84z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st2" d="M178.6,84.2c-0.8,0-1.5-0.2-2.1-0.5c-0.6-0.3-1.1-0.8-1.5-1.3c-0.4-0.6-0.6-1.2-0.8-1.8
|
||||
c-0.2-0.7-0.3-1.4-0.3-2.1c0-0.7,0.1-1.4,0.3-2.1c0.2-0.7,0.4-1.3,0.8-1.8s0.8-1,1.5-1.3s1.3-0.5,2.1-0.5c1.7,0,3,0.7,3.6,2
|
||||
l-1.2,0.6c-0.3-0.4-0.6-0.8-1-1s-0.8-0.3-1.4-0.3c-0.8,0-1.4,0.2-1.9,0.7c-0.5,0.5-0.8,1-1,1.7c-0.2,0.6-0.3,1.3-0.3,2.1
|
||||
c0,1.2,0.3,2.3,0.8,3.2c0.5,0.9,1.3,1.3,2.4,1.3s1.9-0.5,2.4-1.4l1.3,0.5c-0.3,0.7-0.8,1.2-1.4,1.6
|
||||
C180.3,84,179.6,84.2,178.6,84.2z"/>
|
||||
<path class="st2" d="M185.9,74.1c-0.2,0.2-0.4,0.2-0.6,0.2c-0.2,0-0.5-0.1-0.6-0.3c-0.2-0.2-0.2-0.4-0.2-0.6
|
||||
c0-0.2,0.1-0.5,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0.2,0,0.5,0.1,0.6,0.3c0.2,0.2,0.3,0.4,0.3,0.6
|
||||
C186.2,73.7,186.1,73.9,185.9,74.1z M184.6,84v-8.2h1.4V84H184.6z"/>
|
||||
<path class="st2" d="M190.9,84.2c-1.2,0-1.7-0.7-1.7-2V77h-1.3v-1.2h1.3v-2.7l1.4-0.7v3.4h2V77h-2v4.7c0,0.4,0.1,0.6,0.2,0.8
|
||||
c0.1,0.2,0.3,0.3,0.7,0.3c0.4,0,0.8-0.1,1.2-0.4l-0.2,1.4C192,84.1,191.4,84.2,190.9,84.2z"/>
|
||||
<path class="st2" d="M195.6,87.1l1.2-3.3l-3-8h1.4l2,5.6c0.1,0.2,0.2,0.4,0.3,0.8c0.1-0.3,0.2-0.6,0.3-0.8l2.1-5.6h1.4L197,87.1
|
||||
H195.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 12 KiB |
Loading…
Add table
Add a link
Reference in a new issue