Skip to content

Commit

Permalink
Add assets
Browse files Browse the repository at this point in the history
  • Loading branch information
mobalt committed Feb 10, 2020
1 parent 2c497fa commit 311bdb7
Show file tree
Hide file tree
Showing 28 changed files with 20,182 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ yarn-debug.log*
yarn-error.log*

# Editor directories and files
*.iml
.idea
.vscode
*.suo
Expand Down
22 changes: 22 additions & 0 deletions electron-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"appId": "org.nrg.ccf.DicomUploader"
"asarUnpack": "node_modules/ssh-keygen"
"extraResources": "bin"
"copyright": "Copyright © 2020"
"productName": "DicomUploader"
"electronVersion": "6.0.0"
"asar": true
"directories": {
"output": "out"
}
"linux": {
"target": "AppImage",
"icon": "build/png/512x512.png",
"category": "Utility"
}
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
mac:
category: public.app-category.medical
target: dmg
39 changes: 39 additions & 0 deletions public/assets/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
html, body {
height: 100%;
/*margin: 0;*/

/* Disable text selection */
/*-webkit-user-select: none;*/
-webkit-app-region: drag;

/* Make sure this matches the native window background color that you pass to
* electron.BrowserWindow({...}), otherwise your app startup will look bad. */
background: rgb(255, 255, 255);

animation: fadein 1s;
}
.wrapper {
height: 100%;
display: flex;
flex-direction: column;
}
.header, .footer {
background: #f8f8f8;
}
.content {
flex: 1;
overflow: auto;
}
/*
.uk-legend, .uk-modal-title {
font-size: 1.3em;
}*/

@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
4 changes: 4 additions & 0 deletions public/assets/css/font-awesome.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/assets/css/uikit.min.css

Large diffs are not rendered by default.

Binary file added public/assets/fonts/FontAwesome.otf
Binary file not shown.
Binary file added public/assets/fonts/fontawesome-webfont.eot
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions public/assets/fonts/fontawesome-webfont.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 public/assets/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file added public/assets/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file added public/assets/fonts/fontawesome-webfont.woff2
Binary file not shown.
Binary file added public/assets/icon/mac/icon.icns
Binary file not shown.
Binary file added public/assets/icon/png/1024x1024.png
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 public/assets/icon/png/128x128.png
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 public/assets/icon/png/16x16.png
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 public/assets/icon/png/24x24.png
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 public/assets/icon/png/256x256.png
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 public/assets/icon/png/32x32.png
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 public/assets/icon/png/48x48.png
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 public/assets/icon/png/512x512.png
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 public/assets/icon/png/64x64.png
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 public/assets/icon/win/icon.ico
Binary file not shown.
Loading

0 comments on commit 311bdb7

Please sign in to comment.