diff --git a/.github/workflows/master_physaci.yml b/.github/workflows/master_physaci.yml
index a7f7c24..e6296c1 100644
--- a/.github/workflows/master_physaci.yml
+++ b/.github/workflows/master_physaci.yml
@@ -4,15 +4,21 @@
name: Build and deploy Python app to Azure Web App - physaci
on:
+ release:
+ types: [published]
push:
- branches:
- - master
+ pull_request:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
+ - name: Dump GitHub context
+ env:
+ GITHUB_CONTEXT: ${{ toJson(github) }}
+ run: echo "$GITHUB_CONTEXT"
+
- uses: actions/checkout@master
- name: Set up Python version
@@ -30,4 +36,5 @@ jobs:
with:
app-name: 'physaci'
slot-name: 'production'
- publish-profile: ${{ secrets.AzureAppService_PublishProfile_4e92bde43d604530a3bf366d0fc7e028 }}
\ No newline at end of file
+ publish-profile: ${{ secrets.AzureAppService_PublishProfile_4e92bde43d604530a3bf366d0fc7e028 }}
+ if: ${{ github.event_name == 'release' }}
\ No newline at end of file
diff --git a/static/images/physaci_rosiepi_event_sequence.png b/static/images/physaci_rosiepi_event_sequence.png
new file mode 100644
index 0000000..2a1771c
Binary files /dev/null and b/static/images/physaci_rosiepi_event_sequence.png differ
diff --git a/static/index.css b/static/index.css
index 4fdee0c..fe52765 100644
--- a/static/index.css
+++ b/static/index.css
@@ -5,7 +5,7 @@ body {
.index-page {
display: grid;
grid-template-columns: 2fr;
- grid-template-rows: 1fr 3fr;
+ grid-template-rows: 1fr 6fr;
justify-items: center;
}
@@ -47,31 +47,49 @@ body {
.div-content {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
- grid-row-gap: 20px;
+ grid-row-gap: 2rem;
grid-template-areas:
- " about about about "
- " . features . "
- " snail snail snail"
+ " about-physaci about-physaci about-physaci "
+ " about-rosiepi about-rosiepi about-rosiepi "
+ " event_seq event_seq event_seq"
+ " snail snail snail"
}
.div-about-physaci {
- grid-area: about;
+ grid-area: about-physaci;
display: flex;
justify-content: center;
+ border-bottom: 2px solid #D0BB98;
+ padding-bottom: 1rem;
+}
+
+.div-about-rosiepi {
+ grid-area: about-rosiepi;
+ display: flex;
+ justify-content: center;
+ border-bottom: 2px solid #D0BB98;
+ padding-bottom: 1rem;
}
-.about-physaci {
+article {
width: 90%;
text-align: justify;
- font-size: 3rem;
+ font-size: 2.5rem;
font-family: Arial, Helvetica, sans-serif;
}
-.feature-list {
- grid-area: features;
- text-align: start;
- font-size: 2.7rem;
- font-family: monospace;
+
+.div-event-seq {
+ grid-area: event_seq;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ border-bottom: 2px solid #D0BB98;
+ padding-bottom: 1rem;
+}
+
+.event-seq {
+ align-self: center;
}
.div-about-snail {
diff --git a/static/job_results.css b/static/job_results.css
index 83ee457..da05491 100644
--- a/static/job_results.css
+++ b/static/job_results.css
@@ -25,7 +25,7 @@
font-size: large;
font-weight: 600;
padding: .5em;
- color: #313131;
+ color: #8E98A5;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
@@ -37,4 +37,5 @@
font-size: large;
font-weight: 400;
padding: 3px;
+ border-top: 2px solid #D0BB98;
}
\ No newline at end of file
diff --git a/templates/header.html b/templates/header.html
new file mode 100644
index 0000000..980decb
--- /dev/null
+++ b/templates/header.html
@@ -0,0 +1,4 @@
+
+
+ physaCI
+
diff --git a/templates/index.html b/templates/index.html
index 380ffcd..98728a3 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -9,34 +9,45 @@