Compare commits
No commits in common. "f52fbc4575b365d6f0d7e41887f9c0beac6b9f67" and "5a2b054beed26316d374a38802a4207be12104f6" have entirely different histories.
f52fbc4575
...
5a2b054bee
7 changed files with 6355 additions and 9118 deletions
11722
agaric/css/agaric.css
11722
agaric/css/agaric.css
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -142,52 +142,3 @@ hr {
|
|||
iframe {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
// No spacing on main heading to avoid gap at top of page
|
||||
|
||||
a#main-content {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
// Positioning witchcraft to allow editing in the presence of heroes
|
||||
|
||||
@mixin localfloaters {
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
padding-top: 1rem;
|
||||
ul li a {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
// Logged in users need a nice view of the edit tabs
|
||||
|
||||
.gin--horizontal-toolbar {
|
||||
|
||||
.section:has(#block-agarica-local-tasks) {
|
||||
padding-block: 0;
|
||||
}
|
||||
|
||||
&:has(.hero-project) {
|
||||
#navbar {
|
||||
background-color: transparent;
|
||||
}
|
||||
.hero {
|
||||
margin-top: -8rem;
|
||||
}
|
||||
|
||||
section:has(#block-agarica-local-tasks) {
|
||||
@include localfloaters();
|
||||
}
|
||||
}
|
||||
|
||||
&:has([data-history-node-id]):has(.hero-main){
|
||||
article[data-history-node-id] {
|
||||
margin-top: 4rem;
|
||||
}
|
||||
.section:has(#block-agarica-local-tasks) {
|
||||
@include localfloaters();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -17,7 +17,6 @@
|
|||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
margin-top: -4rem;
|
||||
&::before {
|
||||
position: absolute;
|
||||
display: block;
|
||||
|
|
@ -26,6 +25,8 @@
|
|||
left: 0;
|
||||
height: 11em;
|
||||
content: "";
|
||||
background: -webkit-linear-gradient(top, rgba(13,30,52,1) 25%,rgba(13,30,52,0) 100%);
|
||||
background: -moz-linear-gradient(top, rgba(13,30,52,1) 25%, rgba(13,30,52,0) 100%);
|
||||
background: linear-gradient(to bottom, rgba(13,30,52,1) 25%,rgba(13,30,52,0) 100%);
|
||||
}
|
||||
a .icon {
|
||||
|
|
@ -134,15 +135,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
.hero-project,
|
||||
.hero-person {
|
||||
margin-top: -6rem;
|
||||
}
|
||||
|
||||
// Project
|
||||
|
||||
.hero-project {
|
||||
.container {
|
||||
.hero-project .container {
|
||||
.hero-body {
|
||||
.title {
|
||||
color: currentColor;
|
||||
|
|
@ -194,7 +189,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Initiative
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
// Fixed container
|
||||
|
||||
.is-fixed {
|
||||
position: sticky;
|
||||
top: var(--gin-toolbar-height, 0px);
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: +400;
|
||||
|
|
|
|||
|
|
@ -48,14 +48,7 @@ $light: $white !default;
|
|||
$dark: $dark !default;
|
||||
|
||||
// Bulma invert colors
|
||||
$orange-invert: $white !default;
|
||||
$yellow-invert: $white !default;
|
||||
$green-invert: $white !default;
|
||||
$turquoise-invert: $white !default;
|
||||
$blue-invert: $white !default;
|
||||
$purple-invert: $white !default;
|
||||
$red-invert: $white !default;
|
||||
$primary-invert: $turquoise-invert !default;
|
||||
$orange-invert: $white !default $yellow-invert:$white !default $green-invert: $white !default $turquoise-invert:$white !default $blue-invert: $white !default $purple-invert:$white !default $red-invert: $white !default $primary-invert:$turquoise-invert !default;
|
||||
$info-invert: $blue-invert !default;
|
||||
$success-invert: $green-invert !default;
|
||||
$warning-invert: $yellow-invert !default;
|
||||
|
|
@ -172,7 +165,7 @@ $desktop: 960px + (2 * $gap) !default; // 1152px container + 3rem
|
|||
$widescreen: 1152px + (2 * $gap) !default; // 1344px container + 3rem
|
||||
$fullhd: 1344px + (2 * $gap) !default;
|
||||
|
||||
$navbar-breakpoint: $tablet !default;
|
||||
$navbar-breakpoint: $tablet !default
|
||||
|
||||
|
||||
// Animation
|
||||
|
|
|
|||
18
package.json
18
package.json
|
|
@ -2,8 +2,16 @@
|
|||
"name": "agaric-bulma",
|
||||
"version": "1.0.0",
|
||||
"devDependencies": {
|
||||
"sass": "^1.91.0",
|
||||
"nodemon": "^3.1.10"
|
||||
"assemble": "^0.4.42",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-connect": "^1.0.2",
|
||||
"grunt-contrib-watch": "^1.0.0",
|
||||
"grunt-kss": "^5.0.1",
|
||||
"grunt-sass": "^2.1.0",
|
||||
"grunt-shell": "^2.1.0",
|
||||
"kss": "^3.0.0-beta.25",
|
||||
"node-sass": "^4.13.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"bulma": "^0.7.5",
|
||||
|
|
@ -11,11 +19,5 @@
|
|||
"grunt-cli": "^1.3.2",
|
||||
"ionicons": "^4.6.3",
|
||||
"slick-carousel": "^1.8.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run css",
|
||||
"css-compile": "sass --source-map --embed-sources --no-error-css --load-path=node_modules agaric/sass/agaric.scss agaric/css/agaric.css",
|
||||
"css": "npm-run-all css-compile",
|
||||
"watch": "nodemon -e html,scss -x \"npm run css-compile\""
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue