1.4
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
FROM icr.io/appcafe/open-liberty:kernel-slim-java17-openj9-ubi
|
||||
#FROM harbor-dev.alldcs.nl/allard/openliberty-java17
|
||||
|
||||
ARG VERSION=1.0
|
||||
ARG REVISION=SNAPSHOT
|
||||
|
||||
LABEL \
|
||||
org.opencontainers.image.authors="Your Name" \
|
||||
org.opencontainers.image.authors="Allard Krings" \
|
||||
org.opencontainers.image.vendor="IBM" \
|
||||
org.opencontainers.image.url="local" \
|
||||
org.opencontainers.image.source="https://github.com/OpenLiberty/guide-getting-started" \
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*******************************************************************************
|
||||
* Copyright (c) 2018 IBM Corporation and others.
|
||||
* Copyright (c) 2018, 2024 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
@@ -8,20 +8,18 @@
|
||||
* Contributors:
|
||||
* IBM Corporation - initial API and implementation
|
||||
*******************************************************************************/
|
||||
@import url("https://fonts.googleapis.com/css?family=Asap:300,400,500");
|
||||
|
||||
@font-face {
|
||||
font-family: BunueloLight, sans-serif;
|
||||
src: url("/fonts/BunueloCleanPro-Light.woff");
|
||||
font-family: BunueloLight;
|
||||
src: url("/fonts/BunueloCleanPro-Light.otf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: BunueloSemiBold, sans-serif;
|
||||
src: url("/fonts/BunueloCleanPro-SemiBold.woff");
|
||||
font-family: BunueloSemiBold;
|
||||
src: url("/fonts/BunueloCleanPro-SemiBold.otf");
|
||||
}
|
||||
|
||||
body {
|
||||
font-family:Asap, sans-serif;
|
||||
font-family: BunueloSemiBold;
|
||||
font-size: 16px;
|
||||
color: #24243b;
|
||||
background-color: white;
|
||||
@@ -32,6 +30,7 @@ section {
|
||||
padding-top: 55px;
|
||||
padding-left: 8%;
|
||||
padding-right: 8%;
|
||||
/* font-weight: 400; */
|
||||
letter-spacing: 0;
|
||||
text-align: left;
|
||||
}
|
||||
@@ -43,7 +42,7 @@ section {
|
||||
}
|
||||
|
||||
.headerImage {
|
||||
background-image: url(/img/header_ufo.png);
|
||||
background-image: url("/img/header_ufo.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: top 20px right 15px;
|
||||
height: 103px;
|
||||
@@ -60,7 +59,7 @@ p {
|
||||
margin-top: 0px;
|
||||
}
|
||||
h1 {
|
||||
font-family:BunueloSemiBold, sans-serif;
|
||||
font-family: BunueloSemiBold;
|
||||
font-size: 40px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0;
|
||||
@@ -89,7 +88,7 @@ a {
|
||||
}
|
||||
|
||||
#appTitle {
|
||||
font-family:BunueloLight, sans-serif;
|
||||
font-family: BunueloLight;
|
||||
font-size: 55px;
|
||||
}
|
||||
|
||||
@@ -106,20 +105,14 @@ a {
|
||||
.collapsibleRow {
|
||||
transition: border 400ms ease-out, box-shadow 200ms linear;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
border-bottom: 4px solid;
|
||||
}
|
||||
.collapsibleRow:hover .headerTitle {
|
||||
background-color: #f4f4f4;
|
||||
transition: background-color 0.1s;
|
||||
}
|
||||
.collapsed {
|
||||
.collapsed .collapsibleRow {
|
||||
box-shadow: none;
|
||||
border-bottom: 4px solid;
|
||||
transition: all 400ms ease-out, opacity 300ms ease-in;
|
||||
opacity: 0;
|
||||
max-height: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
.collapsed#healthSection > .headerRow {
|
||||
border-bottom-color: #D6D9E4;
|
||||
@@ -130,18 +123,24 @@ a {
|
||||
.collapsed#metricsSection > .headerRow {
|
||||
border-bottom-color: #EEF3C3;
|
||||
}
|
||||
.collapsibleContent { /* collapsing animation */
|
||||
|
||||
.collapsed .collapsibleContent { /* collapsing animation */
|
||||
transition: all 400ms ease-out, opacity 300ms ease-in;
|
||||
}
|
||||
.expanded .collapsibleContent { /* expanding animation */
|
||||
transition: all 400ms ease-out, opacity 450ms ease-out;
|
||||
}
|
||||
.collapsed .collapsibleContent {
|
||||
opacity: 0;
|
||||
max-height: 0;
|
||||
visibility: hidden;
|
||||
transition: all 400ms ease-out, opacity 300ms ease-in;
|
||||
}
|
||||
.expanded { /* expanding animation */
|
||||
transition: all 400ms ease-out, opacity 450ms ease-out;
|
||||
.expanded .collapsibleContent {
|
||||
opacity: 1;
|
||||
max-height: 1000px;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.headerIcon {
|
||||
width: 160px;
|
||||
height: 100%;
|
||||
@@ -149,12 +148,12 @@ a {
|
||||
background-color: #E8EAEF;
|
||||
}
|
||||
.headerIcon img {
|
||||
display:block;
|
||||
display: Block;
|
||||
margin:auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#healthSection {
|
||||
#healthSection .headerIcon {
|
||||
background-color: #E8EAEF;
|
||||
}
|
||||
#configSection .headerIcon {
|
||||
@@ -188,7 +187,7 @@ a {
|
||||
}
|
||||
|
||||
.headerTitle > h2 {
|
||||
font-family: BunueloLight, sans-serif;
|
||||
font-family: BunueloLight;
|
||||
font-size: 40px;
|
||||
margin: 0;
|
||||
}
|
||||
@@ -225,7 +224,7 @@ button {
|
||||
height: 44px;
|
||||
color: #24253a;
|
||||
text-align: center;
|
||||
font-family: Asap, sans-serif;
|
||||
font-family: BunueloSemiBold;
|
||||
margin-top: 25px;
|
||||
margin-bottom: 70px;
|
||||
cursor: pointer;
|
||||
@@ -296,7 +295,7 @@ section#openLibertyAndMp {
|
||||
|
||||
#serviceStatus {
|
||||
font-size: 50px;
|
||||
font-family:BunueloLight, sans-serif;
|
||||
font-family: BunueloLight;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
@@ -331,7 +330,7 @@ td {
|
||||
background: #D6D9E4;
|
||||
}
|
||||
#configTable tr:first-child {
|
||||
background: #F8D7C1;
|
||||
background: #F8D7C1;;
|
||||
}
|
||||
#metricsTable tr:first-child {
|
||||
background: #EEF3C3;
|
||||
@@ -382,7 +381,7 @@ td {
|
||||
|
||||
.bodyFooter {
|
||||
padding: 5px 8%;
|
||||
background-image: url(/img/footer_main.png);
|
||||
background-image: url("/img/footer_main.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: top 20px right 110px;
|
||||
margin-bottom: 40px;
|
||||
@@ -391,7 +390,7 @@ td {
|
||||
}
|
||||
|
||||
.bodyFooterLink {
|
||||
font-family: Asap, sans-serif;
|
||||
font-family: BunueloSemiBold;
|
||||
font-weight: 300;
|
||||
font-size: 14px;
|
||||
letter-spacing: 0;
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<body>
|
||||
<section id="appIntro">
|
||||
<div id="titleSection">
|
||||
<h1 id="appTitle">Java-PitStop Openliberty/Java17 voorbeeld 2.1</h1>
|
||||
<h1 id="appTitle">Java-PitStop Openliberty/Java17 voorbeeld 1.4</h1>
|
||||
<div class="line"></div>
|
||||
<div class="headerImage"></div>
|
||||
<h2>Open Liberty Java17 applicatie op Container Hosting Platform!</h2>
|
||||
|
||||
Reference in New Issue
Block a user