Merge branch 'master' of gitlab.com:agaric/sites/geo
This commit is contained in:
commit
27ce72e445
15 changed files with 1646 additions and 1924 deletions
42
config/sync/geofresco.settings.yml
Normal file
42
config/sync/geofresco.settings.yml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
features:
|
||||||
|
node_user_picture: true
|
||||||
|
comment_user_picture: true
|
||||||
|
comment_user_verification: 1
|
||||||
|
favicon: 1
|
||||||
|
logo:
|
||||||
|
use_default: 1
|
||||||
|
favicon:
|
||||||
|
use_default: 1
|
||||||
|
general:
|
||||||
|
block: 0
|
||||||
|
icon: 1
|
||||||
|
icon_type: 1
|
||||||
|
menu: main
|
||||||
|
button:
|
||||||
|
colorize: 1
|
||||||
|
size: '0'
|
||||||
|
outlined: 0
|
||||||
|
inverted: 0
|
||||||
|
elements:
|
||||||
|
labels_inline: 1
|
||||||
|
input_size: '0'
|
||||||
|
labels_rounded: 0
|
||||||
|
labels_color: '0'
|
||||||
|
labels_size: '0'
|
||||||
|
breadcrumb:
|
||||||
|
position: '0'
|
||||||
|
size: '0'
|
||||||
|
separator: '0'
|
||||||
|
tabs:
|
||||||
|
position: '0'
|
||||||
|
size: '0'
|
||||||
|
style: is-toggle
|
||||||
|
fullwidth: 0
|
||||||
|
table:
|
||||||
|
bordered: 0
|
||||||
|
striped: 0
|
||||||
|
narrow: 0
|
||||||
|
cdn:
|
||||||
|
bulma:
|
||||||
|
version: ''
|
||||||
|
bulmaswatch: null
|
|
@ -1,7 +1,7 @@
|
||||||
uuid: defbb222-313e-4c16-8f41-a3362991e447
|
uuid: defbb222-313e-4c16-8f41-a3362991e447
|
||||||
name: 'Drush Site-Install'
|
name: 'Grassroots Economic Organizing'
|
||||||
mail: admin@example.com
|
mail: admin@example.com
|
||||||
slogan: ''
|
slogan: 'Catalyzing worker co-ops & the solidarity economy'
|
||||||
page:
|
page:
|
||||||
403: ''
|
403: ''
|
||||||
404: ''
|
404: ''
|
||||||
|
|
3344
web/themes/custom/geofresco/dist/css/global.css
vendored
3344
web/themes/custom/geofresco/dist/css/global.css
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,10 @@
|
||||||
/* .navbar > .container > .navbar-brand {
|
.navbar > .container > .navbar-brand {
|
||||||
margin-left: inherit;
|
margin-left: inherit; }
|
||||||
}
|
|
||||||
|
|
||||||
|
.navbar > .container > .navbar-menu {
|
||||||
|
margin-right: inherit; }
|
||||||
|
|
||||||
|
/*
|
||||||
.section {
|
.section {
|
||||||
padding-top: 1.5rem;
|
padding-top: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,7 @@ base theme: octavia
|
||||||
package: Custom
|
package: Custom
|
||||||
core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
logo: images/logo-GEO-narrow.png
|
logo: images/GEOLogo.svg
|
||||||
|
|
||||||
|
|
||||||
regions:
|
regions:
|
||||||
|
@ -50,4 +50,4 @@ libraries-override:
|
||||||
bulma/global:
|
bulma/global:
|
||||||
css:
|
css:
|
||||||
base:
|
base:
|
||||||
/themes/contrib/octavia/dist/css/bulma.css: dist/css/global.css
|
/themes/contrib/octavia/dist/css/modified-bulma.css: dist/css/global.css
|
||||||
|
|
108
web/themes/custom/geofresco/images/GEOLogo.svg
Normal file
108
web/themes/custom/geofresco/images/GEOLogo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 31 KiB |
|
@ -53,7 +53,7 @@
|
||||||
"run-sequence": "^2.0.0"
|
"run-sequence": "^2.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bulma": "^0.6.2",
|
"bulma": "^0.7.2",
|
||||||
"bulma-extensions": "^1.0.4"
|
"bulma-extensions": "^1.0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
|
|
||||||
// Set our custom font for headers
|
// Set our custom font for all headers and menus
|
||||||
.title,
|
.title,
|
||||||
|
.subtitle,
|
||||||
.content h1,
|
.content h1,
|
||||||
.content h2,
|
.content h2,
|
||||||
.content h3,
|
.content h3,
|
||||||
.content h4,
|
.content h4,
|
||||||
.content h5,
|
.content h5,
|
||||||
.content h6 {
|
.content h6,
|
||||||
font-family: $family-serif;
|
.menu {
|
||||||
|
font-family: $family-geo;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prevent images from being larger than their Drupal-set size
|
// Prevent images from being larger than their Drupal-set size
|
||||||
|
@ -18,6 +20,20 @@
|
||||||
width: -webkit-max-content; /* Chrome */
|
width: -webkit-max-content; /* Chrome */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add a gradient across only a portion of the vertical width of the navbar.
|
||||||
|
.navbar {
|
||||||
|
background: linear-gradient(
|
||||||
|
$body-background-color,
|
||||||
|
$body-background-color 20px,
|
||||||
|
$light-green 20px,
|
||||||
|
$green 40px,
|
||||||
|
$green 60px,
|
||||||
|
$body-background-color 60px,
|
||||||
|
$body-background-color
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Style the wordmark (logo)
|
// Style the wordmark (logo)
|
||||||
.navbar-item .wordmark {
|
.navbar-item .wordmark {
|
||||||
max-height: 3rem; // 4rem
|
max-height: 3rem; // 4rem
|
||||||
|
|
|
@ -1,29 +1,29 @@
|
||||||
$family-serif: "Pagella", "Palatino", "Bookman", "Bookman Old Style", "Garamond", "Georgia", "Times", "Times New Roman", serif !default
|
$family-geo: "Ocan", "Ubuntu", "Arial Narrow", "Helvetica", "Arial", "Lucida", sans-serif !default
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Pagella';
|
font-family: 'Ocan';
|
||||||
src: url('../../fonts/texgyrepagella-regular-webfont.woff') format('woff');
|
src: url('../../fonts/OcanSansStd-Book.woff') format('woff');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Pagella';
|
font-family: 'Ocan';
|
||||||
src: url('../../fonts/texgyrepagella-bold-webfont.woff') format('woff');
|
src: url('../../fonts/OcanSansStd-Bold.woff') format('woff');
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Pagella';
|
font-family: 'Ocan';
|
||||||
src: url('../../fonts/texgyrepagella-italic-webfont.woff') format('woff');
|
src: url('../../fonts/OcanSansStd-BookIta.woff') format('woff');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Pagella';
|
font-family: 'Ocan';
|
||||||
src: url('../../fonts/texgyrepagella-bolditalic-webfont.woff') format('woff');
|
src: url('../../fonts/OcanSansStd-BoldIta.woff') format('woff');
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
// Set brand colors.
|
// Set brand colors.
|
||||||
$blue: #4391E0;
|
$blue: #4391E0;
|
||||||
$red: #a70c20;
|
$red: #a70c20;
|
||||||
|
$light-green: #65AB1F;
|
||||||
|
$green: #478D00;
|
||||||
|
|
||||||
// Update Bulma's global variables.
|
// Update Bulma's global variables.
|
||||||
$primary: $blue;
|
$primary: $green;
|
||||||
|
|
||||||
// Import each part of Bulma separately so we can layer in our styles.
|
// Import each part of Bulma separately so we can layer in our styles.
|
||||||
// Extend or override Bulam's base styles in this themes base.scss etc.
|
// Extend or override Bulam's base styles in this themes base.scss etc.
|
||||||
|
@ -15,6 +17,7 @@ $primary: $blue;
|
||||||
@import "base";
|
@import "base";
|
||||||
@import "../../node_modules/bulma/sass/elements/_all";
|
@import "../../node_modules/bulma/sass/elements/_all";
|
||||||
@import "elements";
|
@import "elements";
|
||||||
|
$navbar-breakpoint: $tablet;
|
||||||
@import "../../node_modules/bulma/sass/components/_all";
|
@import "../../node_modules/bulma/sass/components/_all";
|
||||||
@import "components";
|
@import "components";
|
||||||
@import "../../node_modules/bulma/sass/grid/_all";
|
@import "../../node_modules/bulma/sass/grid/_all";
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
/* .navbar > .container > .navbar-brand {
|
// this is needed to override weirdness that Bulma theme is doing in its
|
||||||
margin-left: inherit;
|
// own overrides file.
|
||||||
|
.navbar > .container {
|
||||||
|
> .navbar-brand {
|
||||||
|
margin-left: inherit;
|
||||||
|
}
|
||||||
|
> .navbar-menu {
|
||||||
|
margin-right: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
.section {
|
.section {
|
||||||
padding-top: 1.5rem;
|
padding-top: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue