Skip to content

Commit

Permalink
neu Version 0.0.11
Browse files Browse the repository at this point in the history
- CSS-Anpassungen
  • Loading branch information
schipplock committed Apr 20, 2024
1 parent b270e14 commit a065158
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ FROM base

COPY docker/entrypoint.sh /bin/entrypoint.sh
COPY docker/postgresql-42.7.1.jar $JBOSS_HOME/standalone/deployments/postgresql-driver.jar
COPY --from=build-war /src/target/tilstory-0.0.10.war $JBOSS_HOME/standalone/deployments/tilstory.war
COPY --from=build-war /src/target/tilstory-0.0.11.war $JBOSS_HOME/standalone/deployments/tilstory.war
COPY docker/standalone.xml $JBOSS_HOME/standalone/configuration/standalone.xml
COPY docker/application.keystore $JBOSS_HOME/standalone/configuration/application.keystore

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Meine Blogsoftware. TIL = Today I learned.
## Das Image bauen

```bash
docker build --network=host -t ghcr.io/schipplock/tilstory:v0.0.10 .
docker build --network=host -t ghcr.io/schipplock/tilstory:v0.0.11 .
```
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ services:
- flywaydb

tilstory-app:
image: ghcr.io/schipplock/tilstory:v0.0.10
image: ghcr.io/schipplock/tilstory:v0.0.11
container_name: tilstory-app
networks:
local-net:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
<groupId>de.schipplock.web</groupId>
<artifactId>tilstory</artifactId>
<packaging>war</packaging>
<version>0.0.10</version>
<version>0.0.11</version>
<name>TILstory</name>
<description>Today I learned - blogging tool</description>
<url>https://github.com/schipplock/tilstory</url>
Expand Down
16 changes: 8 additions & 8 deletions src/main/webapp/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ img {
a:link, a:visited, a:link h1, a:visited h1 {
color: #e6c614;
text-decoration: none;
overflow-wrap: anywhere;
}

b {
Expand Down Expand Up @@ -155,14 +156,13 @@ header h1 {
text-shadow: 1px 1px 2px #c0c0c0;
text-align: right;
font-weight: 700;
font-size: 3rem;
font-size: 2rem;
}
header h2 {
color: #ffffff;
padding:0;
font-size: 0.9rem;
font-size: 1.4rem;
margin: 0;
padding: 0;
margin-top: auto;
margin-bottom: auto;
line-height: 0.9;
Expand All @@ -187,9 +187,7 @@ section.post {
section.post h2 {
margin:0;
padding:0;
padding:20px;
font-weight: 700;
font-size:3rem;
}
@media all and (max-width: 1000px) {
section.post h2 {
Expand All @@ -199,8 +197,9 @@ section.post h2 {
section.post p {
margin:0;
padding:20px;
font-size:1.6rem;
font-size:1.2rem;
background-color: var(--clr-content);
overflow-wrap: anywhere;
}
@media all and (max-width: 1000px) {
section.post p {
Expand All @@ -214,7 +213,7 @@ section.post p.created {
grid-area: "posttitles";
}
.posttitles h2.subject {
font-size: 1.6rem;
font-size: 1rem;
}
.postcontent {
grid-area: "postcontent";
Expand All @@ -229,7 +228,8 @@ section.post p.created {
}
.postcontent h2.subject {
background-color: var(--clr-main);
font-size: 2.5rem;
font-size: 1.4rem;
padding-left: 18px;
}

footer {
Expand Down

0 comments on commit a065158

Please sign in to comment.