diff --git a/.gitignore b/.gitignore
index 85158b7..be8fa08 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,43 +1,6 @@
-# See http://help.github.com/ignore-files/ for more about ignoring files.
-
-# compiled output
-/dist
-/tmp
-/out-tsc
-
-# dependencies
-/node_modules
-
-# profiling files
-chrome-profiler-events.json
-speed-measure-plugin.json
-
-# IDEs and editors
-/.idea
-.project
-.classpath
-.c9/
-*.launch
-.settings/
-*.sublime-workspace
-
-# IDE - VSCode
-.vscode/*
-!.vscode/settings.json
-!.vscode/tasks.json
-!.vscode/launch.json
-!.vscode/extensions.json
-
-# misc
-/.sass-cache
-/connect.lock
-/coverage
-/libpeerconnection.log
-npm-debug.log
-yarn-error.log
-testem.log
-/typings
-
-# System Files
-.DS_Store
-Thumbs.db
+node_modules/
+dist/
+.angular/
+*.suo
+*.user
+.vs/
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 2ba986f..47adbad 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,15 +1,15 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "chrome",
- "request": "launch",
- "name": "Launch Chrome against localhost",
- "url": "http://localhost:8080",
- "webRoot": "${workspaceFolder}"
- }
- ]
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "Launch Chrome against localhost",
+ "url": "http://localhost:8080",
+ "webRoot": "${workspaceFolder}"
+ }
+ ]
}
\ No newline at end of file
diff --git a/src/app/FactionPoints.ts b/src/app/FactionPoints.ts
index 789470b..eb0c9cf 100644
--- a/src/app/FactionPoints.ts
+++ b/src/app/FactionPoints.ts
@@ -1,5 +1,5 @@
-export class FactionPoints {
- klingon: number;
- starfleet: number;
- romulan: number;
+export class FactionPoints {
+ klingon: number;
+ starfleet: number;
+ romulan: number;
}
\ No newline at end of file
diff --git a/src/app/app.component.html b/src/app/app.component.html
index 747cc24..844611a 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -1,29 +1,43 @@
+
+
+
+
-

+
{{factionPoints.klingon | number}}
-
-
-
-

+
+
-

+
{{factionPoints.starfleet | number}}
-
-
-
-

+
+
-

+
{{factionPoints.romulan | number}}
-
-
-
-

+
+
-
+
+
+
+
+
diff --git a/src/app/app.component.sass b/src/app/app.component.sass
index b2f0616..10890a8 100644
--- a/src/app/app.component.sass
+++ b/src/app/app.component.sass
@@ -1,45 +1,69 @@
-body
- background-color: #000000
-
-.faction-column
- display: table-cell !important
- float: none !important
- border-style: solid
- border-width: 1em
- text-align: center
-
- img
- margin: 1em
- img.banner
- max-width: 100%
- img.crest
- max-width: 65%
-
-@media screen and (max-width: 600px)
- img.banner
- max-width: 40% !important
- img.crest
- display: none !important
-
-#romulan
- background-color: #011803
- border-color: #033807
- color: #a2bea4
-#klingon
- background-color: #640c02
- border-color: #9c1203
- color: #dfc06b
-#starfleet
- background-color: #000c33
- border-color: #00165e
- color: #77b7d2
-.points
- font-family: Garamond
- text-align: center
-
-@media screen and (min-width: 601px)
- .points
- font-size: 7em
-@media screen and (max-width: 600px)
- .points
- font-size: 4em
+body
+ background-color: #000000
+
+
+@media screen and (max-width: 600px)
+ #desktop-controls
+ display: none !important
+
+.faction-column
+ display: table-cell !important
+ float: none !important
+ border-style: solid
+ border-width: 1em
+ text-align: center
+
+ img
+ margin: 1em
+ .crest
+ max-width: 65%
+ .crest-wide
+ max-width: 80%
+
+@media screen and (max-width: 600px)
+ img.banner
+ display: inline !important
+ max-width: 50% !important
+ margin: .1em !important
+ .faction-column
+ border-width: .4em
+ p
+ display: inline !important
+ vertical-align: middle
+ margin-left: .2em
+ img.crest
+ display: none !important
+ img.crest-wide
+ display: none !important
+
+#klingon
+ background: radial-gradient(ellipse at bottom, rgba(#934741, .9) 0%, rgba(#640c02, 0.1) 100%)
+ border-color: #9c1203
+ color: #dceaf9
+ @media screen and (min-width: 601px)
+ margin-left: 1em
+
+#starfleet
+ background: radial-gradient(ellipse at bottom, rgba(#344c67, .9) 0%, rgba(#000c33, 0.1) 100%)
+ border-color: #374561
+ color: #f4ebd5
+ background-image: url('../assets/img/starfleet_emblem_bw.png') center center
+
+#romulan
+ background: radial-gradient(ellipse at bottom, rgba(#234448, .9) 0%, rgba(#011803, 0.1) 100%)
+ border-color: #033807
+ color: #c3e5c6
+ @media screen and (min-width: 601px)
+ margin-right: 1em
+
+.points
+ font-family: Odibee Sans
+ text-align: center
+
+ @media screen and (min-width: 601px)
+ font-size: 7em
+ @media screen and (max-width: 600px)
+ font-size: 4em
+ margin-bottom: 0em
+ padding: 0em !important
+
diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index ac37585..bd7785c 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -14,6 +14,7 @@ export class AppComponent implements OnInit {
ngOnInit() {
this.getFactionPoints();
setInterval(()=>{this.getFactionPoints();}, 10000);
+ this.displayOnlyMode = false;
}
getFactionPoints(): void {
@@ -29,8 +30,6 @@ export class AppComponent implements OnInit {
});
}
- title = 'Galaxy Point';
-
factionPoints: FactionPoints;
changeKlingonPoints($event) {
@@ -64,4 +63,10 @@ export class AppComponent implements OnInit {
romulan:0
});
}
+
+ public displayOnlyMode: boolean;
+
+ displayOnly() {
+ this.displayOnlyMode = true;
+ }
}
diff --git a/src/app/faction-points-remote.service.spec.ts b/src/app/faction-points-remote.service.spec.ts
index f5a954a..acc7b72 100644
--- a/src/app/faction-points-remote.service.spec.ts
+++ b/src/app/faction-points-remote.service.spec.ts
@@ -1,12 +1,12 @@
import { TestBed } from '@angular/core/testing';
-import { HousePointsRemoteService } from './house-points-remote.service';
+import { FactionPointsRemoteService } from './faction-points-remote.service';
-describe('HousePointsRemoteService', () => {
+describe('FactionPointsRemoteService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
- const service: HousePointsRemoteService = TestBed.get(HousePointsRemoteService);
+ const service: FactionPointsRemoteService = TestBed.get(FactionPointsRemoteService);
expect(service).toBeTruthy();
});
});
diff --git a/src/app/points.component.html b/src/app/points.component.html
index 1258f5e..e35f722 100644
--- a/src/app/points.component.html
+++ b/src/app/points.component.html
@@ -1,5 +1,5 @@
-
+
diff --git a/src/app/points.component.sass b/src/app/points.component.sass
index 703dd43..bb73f8a 100644
--- a/src/app/points.component.sass
+++ b/src/app/points.component.sass
@@ -1,8 +1,11 @@
-.btn
- opacity: 0.5
- margin: 4%
- font-family: Garamond
- font-weight: bold
- font-size: 1.3em
-.extraLarge
- font-size: 1.7em
\ No newline at end of file
+.btn
+ opacity: 0.5
+ margin: 4%
+ font-family: Odibee Sans
+ font-size: 1.3em
+.extraLarge
+ font-size: 1.7em
+
+@media screen and (max-width: 600px)
+ .btn
+ margin-top: 0em !important
diff --git a/src/app/points.component.ts b/src/app/points.component.ts
index da90e51..0d0c1c1 100644
--- a/src/app/points.component.ts
+++ b/src/app/points.component.ts
@@ -1,26 +1,25 @@
-import { Component, Output, EventEmitter, Input } from '@angular/core';
-
-@Component({
- selector: 'points',
- templateUrl: './points.component.html',
- styleUrls: ['./points.component.sass']
-})
-export class PointsComponent {
-
- @Input() amount: number;
-
- @Output() changeEvent = new EventEmitter();
-
- change() {
- this.changeEvent.emit(this.amount);
- }
-
- isPositive() {
- return this.amount > 0;
- }
-
-
- isExtraLarge() {
- return this.amount == 10;
- }
+import { Component, Output, EventEmitter, Input } from '@angular/core';
+
+@Component({
+ selector: 'points',
+ templateUrl: './points.component.html',
+ styleUrls: ['./points.component.sass']
+})
+export class PointsComponent {
+
+ @Input() amount: number;
+
+ @Output() changeEvent = new EventEmitter();
+
+ change() {
+ this.changeEvent.emit(this.amount);
+ }
+
+ isPositive() {
+ return this.amount > 0;
+ }
+
+ isExtraLarge() {
+ return this.amount == 5;
+ }
}
\ No newline at end of file
diff --git a/src/assets/banners.ai b/src/assets/banners.ai
new file mode 100644
index 0000000..0b1c266
--- /dev/null
+++ b/src/assets/banners.ai
@@ -0,0 +1,3679 @@
+%PDF-1.5
%
+1 0 obj
<>/OCGs[5 0 R 69 0 R 130 0 R 236 0 R 335 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
+
+
+
+
+ application/pdf
+
+
+ Web
+
+
+ Adobe Illustrator CC 22.0 (Windows)
+ 2019-11-12T14:38:03-05:00
+ 2019-11-12T20:58:36-05:00
+ 2019-11-12T20:58:36-05:00
+
+
+
+ 256
+ 32
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAIAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9DfmLa63d+TNSt9ELjUZ
EQR+kaOUEimVV9zHyGTxyAkCUSFinh/lfy/YT6jHpervLZXUsqwpWBZAHbYCQMyMp5exy/JkB3AF
J8Ogz/8AMPQLGN9K0u3uESCzteENnLQJFGhoZWkry5SU7r+yd/GuBtrkFTy3+WmlaObPzJqt4ypA
qXBs3RlCyEVjU/EWLBiKKFqW29siZXyCRHvYn5lsLjVdVvdUcu6zzkJKwoVqOSRPQ0BWEdq02r9o
VtENwGvj6ovTbW30/wArTWM87wyas6zzjjyUW9uzIgdWKf3kgY/Cd1UV2O7w7+5TLb3oWxhsJbxL
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
qQKEmpxVvFX/2Q==
+
+
+
+ proof:pdf
+ uuid:65E6390686CF11DBA6E2D887CEACB407
+ xmp.did:2adae559-9643-2643-b76c-596753015227
+ uuid:07765a47-db1d-43b3-810e-3a4c73e0fe76
+
+ uuid:996d8bde-2065-4f79-8b51-b6e5ce5ecaf4
+ xmp.did:d8f12d46-b4b6-fa4e-a251-43d6b2c4ec29
+ uuid:65E6390686CF11DBA6E2D887CEACB407
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:2adae559-9643-2643-b76c-596753015227
+ 2019-11-12T14:38:03-05:00
+ Adobe Illustrator CC 22.0 (Windows)
+ /
+
+
+
+ Web
+ Document
+ 1
+ True
+ False
+
+ 1302.117188
+ 447.484863
+ Pixels
+
+
+
+ Cyan
+ Magenta
+ Yellow
+ Black
+
+
+
+
+
+ Default Swatch Group
+ 0
+
+
+
+ White
+ RGB
+ PROCESS
+ 255
+ 255
+ 255
+
+
+ Black
+ RGB
+ PROCESS
+ 0
+ 0
+ 0
+
+
+ RGB Red
+ RGB
+ PROCESS
+ 255
+ 0
+ 0
+
+
+ RGB Yellow
+ RGB
+ PROCESS
+ 255
+ 255
+ 0
+
+
+ RGB Green
+ RGB
+ PROCESS
+ 0
+ 255
+ 0
+
+
+ RGB Cyan
+ RGB
+ PROCESS
+ 0
+ 255
+ 255
+
+
+ RGB Blue
+ RGB
+ PROCESS
+ 0
+ 0
+ 255
+
+
+ RGB Magenta
+ RGB
+ PROCESS
+ 255
+ 0
+ 255
+
+
+ R=193 G=39 B=45
+ RGB
+ PROCESS
+ 193
+ 39
+ 45
+
+
+ R=237 G=28 B=36
+ RGB
+ PROCESS
+ 237
+ 28
+ 36
+
+
+ R=241 G=90 B=36
+ RGB
+ PROCESS
+ 241
+ 90
+ 36
+
+
+ R=247 G=147 B=30
+ RGB
+ PROCESS
+ 247
+ 147
+ 30
+
+
+ R=251 G=176 B=59
+ RGB
+ PROCESS
+ 251
+ 176
+ 59
+
+
+ R=252 G=238 B=33
+ RGB
+ PROCESS
+ 252
+ 238
+ 33
+
+
+ R=217 G=224 B=33
+ RGB
+ PROCESS
+ 217
+ 224
+ 33
+
+
+ R=140 G=198 B=63
+ RGB
+ PROCESS
+ 140
+ 198
+ 63
+
+
+ R=57 G=181 B=74
+ RGB
+ PROCESS
+ 57
+ 181
+ 74
+
+
+ R=0 G=146 B=69
+ RGB
+ PROCESS
+ 0
+ 146
+ 69
+
+
+ R=0 G=104 B=55
+ RGB
+ PROCESS
+ 0
+ 104
+ 55
+
+
+ R=34 G=181 B=115
+ RGB
+ PROCESS
+ 34
+ 181
+ 115
+
+
+ R=0 G=169 B=157
+ RGB
+ PROCESS
+ 0
+ 169
+ 157
+
+
+ R=41 G=171 B=226
+ RGB
+ PROCESS
+ 41
+ 171
+ 226
+
+
+ R=0 G=113 B=188
+ RGB
+ PROCESS
+ 0
+ 113
+ 188
+
+
+ R=46 G=49 B=146
+ RGB
+ PROCESS
+ 46
+ 49
+ 146
+
+
+ R=27 G=20 B=100
+ RGB
+ PROCESS
+ 27
+ 20
+ 100
+
+
+ R=102 G=45 B=145
+ RGB
+ PROCESS
+ 102
+ 45
+ 145
+
+
+ R=147 G=39 B=143
+ RGB
+ PROCESS
+ 147
+ 39
+ 143
+
+
+ R=158 G=0 B=93
+ RGB
+ PROCESS
+ 158
+ 0
+ 93
+
+
+ R=212 G=20 B=90
+ RGB
+ PROCESS
+ 212
+ 20
+ 90
+
+
+ R=237 G=30 B=121
+ RGB
+ PROCESS
+ 237
+ 30
+ 121
+
+
+ R=199 G=178 B=153
+ RGB
+ PROCESS
+ 199
+ 178
+ 153
+
+
+ R=153 G=134 B=117
+ RGB
+ PROCESS
+ 153
+ 134
+ 117
+
+
+ R=115 G=99 B=87
+ RGB
+ PROCESS
+ 115
+ 99
+ 87
+
+
+ R=83 G=71 B=65
+ RGB
+ PROCESS
+ 83
+ 71
+ 65
+
+
+ R=198 G=156 B=109
+ RGB
+ PROCESS
+ 198
+ 156
+ 109
+
+
+ R=166 G=124 B=82
+ RGB
+ PROCESS
+ 166
+ 124
+ 82
+
+
+ R=140 G=98 B=57
+ RGB
+ PROCESS
+ 140
+ 98
+ 57
+
+
+ R=117 G=76 B=36
+ RGB
+ PROCESS
+ 117
+ 76
+ 36
+
+
+ R=96 G=56 B=19
+ RGB
+ PROCESS
+ 96
+ 56
+ 19
+
+
+ R=66 G=33 B=11
+ RGB
+ PROCESS
+ 66
+ 33
+ 11
+
+
+ Global Night
+ PROCESS
+ 100.000000
+ RGB
+ 0
+ 106
+ 177
+
+
+ Global Orange
+ PROCESS
+ 100.000000
+ RGB
+ 236
+ 146
+ 41
+
+
+
+
+
+ Grays
+ 1
+
+
+
+ R=0 G=0 B=0
+ RGB
+ PROCESS
+ 0
+ 0
+ 0
+
+
+ R=26 G=26 B=26
+ RGB
+ PROCESS
+ 26
+ 26
+ 26
+
+
+ R=51 G=51 B=51
+ RGB
+ PROCESS
+ 51
+ 51
+ 51
+
+
+ R=77 G=77 B=77
+ RGB
+ PROCESS
+ 77
+ 77
+ 77
+
+
+ R=102 G=102 B=102
+ RGB
+ PROCESS
+ 102
+ 102
+ 102
+
+
+ R=128 G=128 B=128
+ RGB
+ PROCESS
+ 128
+ 128
+ 128
+
+
+ R=153 G=153 B=153
+ RGB
+ PROCESS
+ 153
+ 153
+ 153
+
+
+ R=179 G=179 B=179
+ RGB
+ PROCESS
+ 179
+ 179
+ 179
+
+
+ R=204 G=204 B=204
+ RGB
+ PROCESS
+ 204
+ 204
+ 204
+
+
+ R=230 G=230 B=230
+ RGB
+ PROCESS
+ 230
+ 230
+ 230
+
+
+ R=242 G=242 B=242
+ RGB
+ PROCESS
+ 242
+ 242
+ 242
+
+
+
+
+
+ Web Color Group
+ 1
+
+
+
+ R=63 G=169 B=245
+ RGB
+ PROCESS
+ 63
+ 169
+ 245
+
+
+ R=122 G=201 B=67
+ RGB
+ PROCESS
+ 122
+ 201
+ 67
+
+
+ R=255 G=147 B=30
+ RGB
+ PROCESS
+ 255
+ 147
+ 30
+
+
+ R=255 G=29 B=37
+ RGB
+ PROCESS
+ 255
+ 29
+ 37
+
+
+ R=255 G=123 B=172
+ RGB
+ PROCESS
+ 255
+ 123
+ 172
+
+
+ R=189 G=204 B=212
+ RGB
+ PROCESS
+ 189
+ 204
+ 212
+
+
+
+
+
+ Romulan Star Empire
+ 1
+
+
+
+ R=54 G=232 B=0
+ RGB
+ PROCESS
+ 54
+ 232
+ 0
+
+
+ R=52 G=64 B=41
+ RGB
+ PROCESS
+ 52
+ 64
+ 41
+
+
+ R=0 G=84 B=9
+ RGB
+ PROCESS
+ 0
+ 84
+ 9
+
+
+ R=0 G=18 B=232
+ RGB
+ PROCESS
+ 0
+ 18
+ 232
+
+
+ R=135 G=134 B=133
+ RGB
+ PROCESS
+ 135
+ 134
+ 133
+
+
+
+
+
+ Klingon Empire
+ 1
+
+
+
+ R=110 G=5 B=0
+ RGB
+ PROCESS
+ 110
+ 5
+ 0
+
+
+ R=0 G=0 B=0
+ RGB
+ PROCESS
+ 0
+ 0
+ 0
+
+
+ R=255 G=15 B=0
+ RGB
+ PROCESS
+ 255
+ 15
+ 0
+
+
+ R=232 G=223 B=223
+ RGB
+ PROCESS
+ 232
+ 223
+ 223
+
+
+ R=14 G=77 B=0
+ RGB
+ PROCESS
+ 14
+ 77
+ 0
+
+
+
+
+
+
+ Adobe PDF library 15.00
+ 21.0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+endstream
endobj
3 0 obj
<>
endobj
7 0 obj
<>/Resources<>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 1302.12 447.485]/Type/Page>>
endobj
8 0 obj
<>/Resources<>/ExtGState<>/Properties<>/Shading<>/XObject<>>>/TrimBox[0.0 0.0 1302.12 447.485]/Type/Page>>
endobj
9 0 obj
<>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/TrimBox[0.0 0.0 1302.12 447.485]/Type/Page>>
endobj
354 0 obj
<>stream
+H$~
+qϤ{'A chZ½?/3]X2*+?[Ro5BmӜmp=rJ53h%J,yH<+j-ֺBn)cro>p=ƊynjzgNr:_?8@k=9W<\OGp4ީ|{;sĔ@ziGjƈ|$vl<,}f