Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review branding #102

Merged
merged 22 commits into from
Feb 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use the same file structure as in the new plugins website
  • Loading branch information
Xpirix committed Dec 24, 2024
commit 2e404d7e133fb6b1ee324374573fcce186db7f44
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y curl && curl -LJO https://github.com/P3

# Install NodeJS and bulma css webpack
RUN apt-get -qq update && apt-get -qq install -y --no-install-recommends wget && \
wget --no-check-certificate https://deb.nodesource.com/setup_18.x -O /tmp/node.sh && bash /tmp/node.sh && \
wget --no-check-certificate https://deb.nodesource.com/setup_20.x -O /tmp/node.sh && bash /tmp/node.sh && \
apt-get -qq update && apt-get -qq install -y nodejs build-essential

WORKDIR /code
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,10 @@
"author": "",
"license": "ISC",
"devDependencies": {
"bulma": "^0.9.4",
"css-loader": "^6.8.1",
"highlight.js": "^11.9.0",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"sass": "^1.77.8",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
Binary file added qgisfeedproject/static/images/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions qgisfeedproject/static/images/addsupporter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions qgisfeedproject/static/images/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
143 changes: 143 additions & 0 deletions qgisfeedproject/static/images/blue_green_bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions qgisfeedproject/static/images/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
138 changes: 138 additions & 0 deletions qgisfeedproject/static/images/community.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions qgisfeedproject/static/images/external.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions qgisfeedproject/static/images/ham.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added qgisfeedproject/static/images/hegobg1.webp
Binary file not shown.
136 changes: 136 additions & 0 deletions qgisfeedproject/static/images/light_blue_bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
100 changes: 100 additions & 0 deletions qgisfeedproject/static/images/logosign.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion qgisfeedproject/static/js/index.js
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ const hljs = require('highlight.js/lib/core');
hljs.registerLanguage('json', require('highlight.js/lib/languages/json'));
hljs.highlightAll();

require('../style/style.scss');
require('../style/scss/style.scss');

document.addEventListener('DOMContentLoaded', () => {

Original file line number Diff line number Diff line change
@@ -36,10 +36,10 @@ $grey-dark: #444444;
$grey-darker: #363636;
$grey-light: #d4d4d4;
$primary: #a7cecb;
$danger: #ee7913;
$danger: hsl(0, 100%, 61%);
$info: #93b023;
$success: #589632;
$warning: #EEE766;
$warning: #ee7913;
$link: #3A9800;
// Brand fonts to override bulma font families
$heading-font: 'Trueno', sans-serif;
@@ -49,3 +49,4 @@ $menuFontClass: is-size-6;

// Radius for boxes
$corner-radius: 0px;
$navbar-divider-height: 1px;
6 changes: 6 additions & 0 deletions qgisfeedproject/static/style/scss/bulma/base/_all.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* Bulma Base */
@charset "utf-8"

@import "minireset"
@import "generic"
@import "animations"
5 changes: 5 additions & 0 deletions qgisfeedproject/static/style/scss/bulma/base/animations.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@keyframes spinAround
from
transform: rotate(0deg)
to
transform: rotate(359deg)
151 changes: 151 additions & 0 deletions qgisfeedproject/static/style/scss/bulma/base/generic.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
@import "../utilities/mixins"

$body-background-color: $scheme-main !default
$body-size: 16px !default
$body-min-width: 300px !default
$body-rendering: optimizeLegibility !default
$body-family: $family-primary !default
$body-overflow-x: hidden !default
$body-overflow-y: scroll !default

$body-color: $text !default
$body-font-size: 1em !default
$body-weight: $weight-light !default
$body-line-height: 1.5 !default

$code-family: $family-code !default
$code-padding: 0.5em 0.75em 0.5em !default
$code-weight: normal !default
$code-size: 1em !default

$small-font-size: 0.875em !default

$hr-background-color: $background !default
$hr-height: 2px !default
$hr-margin: 1.5rem 0 !default

$strong-color: $text-strong !default
$strong-weight: $weight-normal !default

$pre-font-size: 0.875em !default
$pre-padding: 1.25rem 1.5rem !default
$pre-code-font-size: 1em !default

html
background-color: $body-background-color
font-size: $body-size
-moz-osx-font-smoothing: grayscale
-webkit-font-smoothing: antialiased
min-width: $body-min-width
overflow-x: $body-overflow-x
overflow-y: $body-overflow-y
text-rendering: $body-rendering
text-size-adjust: 100%

article,
aside,
figure,
footer,
header,
hgroup,
section
display: block

body,
button,
input,
optgroup,
select,
textarea
font-family: $body-family

code,
pre
-moz-osx-font-smoothing: auto
-webkit-font-smoothing: auto
font-family: $code-family

body
color: $body-color
font-size: $body-font-size
font-weight: $body-weight
line-height: $body-line-height

// Inline

a
color: $links
cursor: pointer
text-decoration: none
strong
color: currentColor
&:hover
color: $link-hover

.content a
font-weight: 400

code
background-color: $code-background
color: #000
font-size: $code-size
font-weight: $code-weight
padding: $code-padding

hr
background-color: $hr-background-color
border: none
display: block
height: $hr-height
margin: $hr-margin

img
height: auto
max-width: 100%

input[type="checkbox"],
input[type="radio"]
vertical-align: baseline

small
font-size: $small-font-size

span
font-style: inherit
font-weight: inherit

strong
color: $strong-color
font-weight: $strong-weight

// Block

fieldset
border: none

pre
+overflow-touch
background-color: $pre-background
color: $pre
font-size: $pre-font-size
overflow-x: auto
padding: $pre-padding
white-space: pre
word-wrap: normal
code
background-color: transparent
color: currentColor
font-size: $pre-code-font-size
padding: 0

table
td,
th
vertical-align: top
&:not([align])
text-align: inherit
th
color: $text-strong

.block
display: block
1 change: 1 addition & 0 deletions qgisfeedproject/static/style/scss/bulma/base/helpers.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@warn "The helpers.sass file is DEPRECATED. It has moved into its own /helpers folder. Please import sass/helpers/_all instead."
Loading