diff --git a/src/app/app.module.ts b/src/app/app.module.ts index e1ff9e7..968995c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -24,6 +24,7 @@ import {CalendarComponent} from './views/events/calendar/calendar.component'; import {HibernaComponent} from './views/events/hiberna/hiberna.component'; import {GalleryComponent} from './views/gallery/gallery.component'; import {HomeComponent} from './views/home/home.component'; +import {DiyComponent} from './views/reenact/diy/diy.component'; import {DrillComponent} from './views/reenact/drill/drill.component'; import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component'; import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component'; @@ -38,6 +39,7 @@ export const APP_COMPONENTS: any[] = [ CalendarComponent, CarouselComponent, ContactComponent, + DiyComponent, DrillComponent, FooterComponent, FourOFourComponent, diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 3746825..efa4832 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -8,6 +8,7 @@ import {CalendarComponent} from './views/events/calendar/calendar.component'; import {HibernaComponent} from './views/events/hiberna/hiberna.component'; import {GalleryComponent} from './views/gallery/gallery.component'; import {HomeComponent} from './views/home/home.component'; +import {DiyComponent} from './views/reenact/diy/diy.component'; import {DrillComponent} from './views/reenact/drill/drill.component'; import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component'; import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component'; @@ -17,6 +18,7 @@ const routes: Routes = [ {path: '', pathMatch: 'full', component: HomeComponent}, {path: 'about', component: AboutComponent, data: {title: 'About'}}, {path: 'drill', component: DrillComponent, data: {title: 'Drill Commands'}}, + {path: 'diy', component: DiyComponent, data: {title: 'Build Equipment'}}, {path: 'events/agonium', component: AgoniumComponent, data: {title: 'Agonium'}}, {path: 'events/castra-aestiva', component: AestivaComponent, data: {title: 'Castra Aestiva'}}, {path: 'events/castra-hiberna', component: HibernaComponent, data: {title: 'Castra Hiberna'}}, diff --git a/src/app/views/reenact/diy/diy.component.html b/src/app/views/reenact/diy/diy.component.html new file mode 100644 index 0000000..16a908a --- /dev/null +++ b/src/app/views/reenact/diy/diy.component.html @@ -0,0 +1,21 @@ +
+
+
+
+

Build Equipment

+
+ +
+
+ +
+
+
diff --git a/src/app/views/reenact/diy/diy.component.ts b/src/app/views/reenact/diy/diy.component.ts new file mode 100644 index 0000000..0e6d799 --- /dev/null +++ b/src/app/views/reenact/diy/diy.component.ts @@ -0,0 +1,7 @@ +import {Component} from '@angular/core'; + +@Component({ + selector: 'xxx-diy', + templateUrl: './diy.component.html' +}) +export class DiyComponent { } diff --git a/src/app/views/reenact/drill/drill.component.scss b/src/app/views/reenact/drill/drill.component.scss deleted file mode 100644 index 4c8ab91..0000000 --- a/src/app/views/reenact/drill/drill.component.scss +++ /dev/null @@ -1,32 +0,0 @@ -.table2 { - -webkit-print-color-adjust: exact; - border: solid 1px #333333; - - thead > tr { - //background-color: black !important; - //color: white !important; - border: solid 1px #333333; - - th { - border-width: 0 !important; - } - } - - tbody { - tr:nth-child(odd) { - --bs-table-accent-bg: #eee; - background: #eee; - } - } - - tr.subtitle { - &, * { - background-color: #333333 !important; - color: white !important; - } - } - - td, th { - padding: 0.5rem; - } -} diff --git a/src/app/views/reenact/drill/drill.component.ts b/src/app/views/reenact/drill/drill.component.ts index b8bd128..432cb52 100644 --- a/src/app/views/reenact/drill/drill.component.ts +++ b/src/app/views/reenact/drill/drill.component.ts @@ -2,7 +2,6 @@ import {Component} from '@angular/core'; @Component({ selector: 'xxx-drill', - templateUrl: './drill.component.html', - styleUrls: ['./drill.component.scss'] + templateUrl: './drill.component.html' }) export class DrillComponent { } diff --git a/src/app/views/reenact/maintinance/maintenance.component.scss b/src/app/views/reenact/maintinance/maintenance.component.scss deleted file mode 100644 index 29bf28e..0000000 --- a/src/app/views/reenact/maintinance/maintenance.component.scss +++ /dev/null @@ -1,34 +0,0 @@ -.table2 { - -webkit-print-color-adjust: exact; - border: solid 1px #333333; - table-layout: fixed; - width: 100%; - - thead > tr { - //background-color: black !important; - //color: white !important; - border: solid 1px #333333; - - th { - border-width: 0 !important; - } - } - - tbody { - tr:nth-child(odd) { - --bs-table-accent-bg: #eee; - background: #eee; - } - } - - tr.subtitle { - &, * { - background-color: #333333 !important; - color: white !important; - } - } - - td, th { - padding: 0.5rem; - } -} diff --git a/src/app/views/reenact/maintinance/maintenance.component.ts b/src/app/views/reenact/maintinance/maintenance.component.ts index f43ae1e..c27e347 100644 --- a/src/app/views/reenact/maintinance/maintenance.component.ts +++ b/src/app/views/reenact/maintinance/maintenance.component.ts @@ -2,7 +2,6 @@ import {Component} from '@angular/core'; @Component({ selector: 'xxx-maintenance', - templateUrl: './maintenance.component.html', - styleUrls: ['./maintenance.component.scss'] + templateUrl: './maintenance.component.html' }) export class MaintenanceComponent { } diff --git a/src/assets/manuals/Beltus - Part 1.doc b/src/assets/manuals/Beltus - Part 1.doc deleted file mode 100644 index 1efdde5..0000000 Binary files a/src/assets/manuals/Beltus - Part 1.doc and /dev/null differ diff --git a/src/assets/manuals/Beltus - Part 2.doc b/src/assets/manuals/Beltus - Part 2.doc deleted file mode 100644 index afb598b..0000000 Binary files a/src/assets/manuals/Beltus - Part 2.doc and /dev/null differ diff --git a/src/assets/manuals/Beltus Part 1 - Robert Norton.pdf b/src/assets/manuals/Beltus Part 1 - Robert Norton.pdf new file mode 100644 index 0000000..c4eac10 Binary files /dev/null and b/src/assets/manuals/Beltus Part 1 - Robert Norton.pdf differ diff --git a/src/assets/manuals/Beltus Part 2 - Robert Norton.pdf b/src/assets/manuals/Beltus Part 2 - Robert Norton.pdf new file mode 100644 index 0000000..caef7dd Binary files /dev/null and b/src/assets/manuals/Beltus Part 2 - Robert Norton.pdf differ diff --git a/src/assets/manuals/Caligae - Robert Norton.pdf b/src/assets/manuals/Caligae - Robert Norton.pdf new file mode 100644 index 0000000..94cc138 Binary files /dev/null and b/src/assets/manuals/Caligae - Robert Norton.pdf differ diff --git a/src/assets/manuals/Caligae.doc b/src/assets/manuals/Caligae.doc deleted file mode 100644 index a0466ab..0000000 Binary files a/src/assets/manuals/Caligae.doc and /dev/null differ diff --git a/src/assets/manuals/Helmet Liner - Robert Norton.pdf b/src/assets/manuals/Helmet Liner - Robert Norton.pdf new file mode 100644 index 0000000..4a23a7e Binary files /dev/null and b/src/assets/manuals/Helmet Liner - Robert Norton.pdf differ diff --git a/src/assets/manuals/Helmet Liner.docx b/src/assets/manuals/Helmet Liner.docx deleted file mode 100644 index 0ef6770..0000000 Binary files a/src/assets/manuals/Helmet Liner.docx and /dev/null differ diff --git a/src/assets/manuals/Lorica Hamata - Part 1.doc b/src/assets/manuals/Lorica Hamata - Part 1.doc deleted file mode 100644 index 8382029..0000000 Binary files a/src/assets/manuals/Lorica Hamata - Part 1.doc and /dev/null differ diff --git a/src/assets/manuals/Lorica Hamata - Part 2.doc b/src/assets/manuals/Lorica Hamata - Part 2.doc deleted file mode 100644 index 31bf5ba..0000000 Binary files a/src/assets/manuals/Lorica Hamata - Part 2.doc and /dev/null differ diff --git a/src/assets/manuals/Lorica Hamata Part 1.pdf b/src/assets/manuals/Lorica Hamata Part 1.pdf new file mode 100644 index 0000000..a1e07e3 Binary files /dev/null and b/src/assets/manuals/Lorica Hamata Part 1.pdf differ diff --git a/src/assets/manuals/Lorica Hamata Part 2.pdf b/src/assets/manuals/Lorica Hamata Part 2.pdf new file mode 100644 index 0000000..cc511ac Binary files /dev/null and b/src/assets/manuals/Lorica Hamata Part 2.pdf differ diff --git a/src/assets/manuals/Scutum.doc b/src/assets/manuals/Scutum.doc deleted file mode 100644 index 2bf0c84..0000000 Binary files a/src/assets/manuals/Scutum.doc and /dev/null differ diff --git a/src/assets/manuals/Scutum.pdf b/src/assets/manuals/Scutum.pdf new file mode 100644 index 0000000..f802614 Binary files /dev/null and b/src/assets/manuals/Scutum.pdf differ diff --git a/src/styles.scss b/src/styles.scss index 8a1d01c..4cd821d 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -53,9 +53,8 @@ a, a:visited { } } -.transparent-link { - a, a:visited { color: #fff; } - a:hover, a:visited:hover { color: rgba(255, 255, 255, 0.8); } +ol { + list-style-type: upper-roman; } .cap-width { @@ -73,6 +72,42 @@ a, a:visited { } } -ol { - list-style-type: upper-roman; +.table2 { + -webkit-print-color-adjust: exact; + border: solid 1px #333333; + table-layout: fixed; + width: 100%; + + thead > tr { + //background-color: black !important; + //color: white !important; + border: solid 1px #333333; + + th { + border-width: 0 !important; + } + } + + tbody { + tr:nth-child(odd) { + --bs-table-accent-bg: #eee; + background: #eee; + } + } + + tr.subtitle { + &, * { + background-color: #333333 !important; + color: white !important; + } + } + + td, th { + padding: 0.5rem; + } +} + +.transparent-link { + a, a:visited { color: #fff; } + a:hover, a:visited:hover { color: rgba(255, 255, 255, 0.8); } }