Skip to content

Commit

Permalink
add pom.xml for building locally and tweak jetty blue
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcc0nn3ll committed Apr 8, 2024
1 parent b2471ea commit 85ac9f8
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
43 changes: 43 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-website</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Jetty :: Project :: Website</name>
<description>Website for jetty.org</description>
<url>https://jetty.org</url>
<inceptionYear>1995</inceptionYear>

<organization>
<name>Webtide</name>
<url>https://webtide.com</url>
</organization>

<licenses>
<license>
<name>Eclipse Public License - Version 2.0</name>
<url>https://www.eclipse.org/legal/epl-2.0/</url>
</license>
<license>
<name>Apache Software License - Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>

<properties>
<antora.plugin.version>1.0.0-SNAPSHOT</antora.plugin.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.antora</groupId>
<artifactId>antora-maven-plugin</artifactId>
<version>${antora.plugin.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions ui/src/css/vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
--color-black: #000;
/* jetty colors */
--color-jetty-orange: #fc390d;
--color-jetty-blue: #5f86b1;
--color-jetty-blue: #67adca;

/* fonts */
--rem-base: 18; /* used to compute rem value from desired pixel value (e.g., calc(18 / var(--rem-base) * 1rem) = 18px) */
Expand Down Expand Up @@ -152,7 +152,7 @@

/* blog cards */
--color-card-shadow: var(--color-jetty-blue);
--color-focused: var(--color-jetty-blue);
--color-focused: var(--color-white);
--color-net-id: var(--color-jetty-blue);
--color-text-light: var(--color-white);
--color-card-border: var(--color-jetty-blue);
Expand Down

0 comments on commit 85ac9f8

Please sign in to comment.