Skip to content

Commit

Permalink
Add project_interview view and refactor webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Mar 12, 2024
1 parent c945d7d commit ec8f53f
Show file tree
Hide file tree
Showing 26 changed files with 1,287 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "rdmo",
"scripts": {
"build:prod": "webpack --config webpack/prod.config.js --mode production",
"build": "webpack --config webpack/dev.config.js --mode development",
"watch": "webpack --config webpack/dev.config.js --mode development --watch"
"build:prod": "webpack --config webpack.config.js --mode production",
"build": "webpack --config webpack.config.js --mode development",
"watch": "webpack --config webpack.config.js --mode development --watch"
},
"author": "RDMO Arbeitsgemeinschaft <rdmorganiser.github.io>",
"license": "Apache-2.0",
Expand Down
Binary file added rdmo/core/assets/fonts/DroidSans-Bold.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSans.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSansMono.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSerif-Bold.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSerif-BoldItalic.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSerif-Italic.ttf
Binary file not shown.
Binary file added rdmo/core/assets/fonts/DroidSerif.ttf
Binary file not shown.
Binary file added rdmo/core/assets/img/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
260 changes: 260 additions & 0 deletions rdmo/core/assets/img/rdmo-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions rdmo/core/assets/js/base.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import 'bootstrap-sass'
13 changes: 13 additions & 0 deletions rdmo/core/assets/scss/base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
$icon-font-path: "bootstrap-sass/assets/fonts/bootstrap/";
@import '~bootstrap-sass';
@import '~font-awesome/css/font-awesome.css';

@import 'variables';
@import 'style';

@import 'codemirror';
@import 'fonts';
@import 'footer';
@import 'header';
@import 'swagger';
@import 'utils';
9 changes: 9 additions & 0 deletions rdmo/core/assets/scss/codemirror.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.CodeMirror {
font-family: DroidSans-Mono, mono;
}

formgroup .CodeMirror {
border-radius: 4px;
border: 1px solid #ccc;
color: #555;
}
44 changes: 44 additions & 0 deletions rdmo/core/assets/scss/fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
@font-face {
font-family: "DroidSans";
src: url('../fonts/DroidSans.ttf');
}
@font-face {
font-family: "DroidSans";
src: url('../fonts/DroidSans-Bold.ttf');
font-weight: bold;
}
@font-face {
font-family: "DroidSans-Mono";
src: url('../fonts/DroidSansMono.ttf');
}
@font-face {
font-family: "DroidSerif";
src: url('../fonts/DroidSerif.ttf');
}
@font-face {
font-family: "DroidSerif";
src: url('../fonts/DroidSerif-Bold.ttf');
font-weight: bold;
}
@font-face {
font-family: "DroidSerif";
src: url('../fonts/DroidSerif-Italic.ttf');
font-style: italic;
}
@font-face {
font-family: "DroidSerif";
src: url('../fonts/DroidSerif-BoldItalic.ttf');
font-style: italic;
font-weight: bold;
}

body {
font-family: DroidSans, sans;
}
h1, h2, h3, h4, h5, h6 {
font-family: DroidSerif, serif;
}

a.fa {
text-decoration: none !important;
}
Loading

0 comments on commit ec8f53f

Please sign in to comment.