From 1b2966a080e00f50dc5bc19b2d898b2aaabb53d1 Mon Sep 17 00:00:00 2001 From: jshjelse <jshjelse@stud.ntnu.no> Date: Thu, 7 Sep 2023 21:03:11 +0200 Subject: [PATCH] Legge inn en test av mye styling --- .gitlab-ci.yml | 1 + ProgGIS.html | 32 +++++++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f98ddf1..9d3998e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,3 +9,4 @@ pages: - public only: - main + \ No newline at end of file diff --git a/ProgGIS.html b/ProgGIS.html index ea401b7..1457872 100644 --- a/ProgGIS.html +++ b/ProgGIS.html @@ -3,11 +3,37 @@ <head> <title>ProgGIS</title> <style> - + .h1 { + text-align: center; + font-weight: bold; + font-family: monospace; + } + .button { + font-family: monospace; + background-color: greenyellow; + color: white; + border-width: 0; + cursor: pointer; + } + #box1 { + font-family: monospace; + height: 6vh; + display: flex; + flex-grow: 4; + flex-direction: row; + text-align: center; + } </style> </head> <body> - <h1 style="text-align: center; font-weight: bold; font-family: monospace;">ProgGIS</h1> - <p>This is a GitLab page :)</p> + <div style="height: 20vh; width: 100vw; background-color: greenyellow;"> + <h1 style="height: 14vh; color: white;">ProgGIS</h1> + <div id="box1"> + <button>Buffer</button> + <button>Union</button> + <button>Intersection</button> + <button>Difference</button> + </div> + </div> </body> </html> -- GitLab