From c07b85f1434675f1b711f057f684a245e16d5b5e Mon Sep 17 00:00:00 2001 From: VRSasha Date: Tue, 25 Jul 2023 23:04:31 +0700 Subject: [PATCH] Improves typography and buttons --- index.html | 36 +++++++++++++++++++++++++++++++----- style.css | 25 +++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 5 deletions(-) create mode 100644 style.css diff --git a/index.html b/index.html index 7cfa4c3..4c6ef99 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,39 @@ + + + + -

Welcome to TechTransThai

- Invidious - LibreSpeed - Nextcloud + +
+
+

TechTransThai

+

Services

+
+
+ +
+ +

Invidious

+

An open source alternative front-end to YouTube

+ Visit + +

LibreSpeed

+

Free and Open Source Speedtest

+ Visit + +

Nextcloud

+

A safe home for all your data

+ Visit + + +
+ + +

Version DATE-VERSION

Service status -

Version DATE-VERSION

diff --git a/style.css b/style.css new file mode 100644 index 0000000..479f458 --- /dev/null +++ b/style.css @@ -0,0 +1,25 @@ +html * +{ + font-family: Cantarell, sans-serif; +} +.button { + background-color: #EBEBEB; + color: black; + border: none; + border-radius: 8px; + justify-content: center; + align-items: center; + text-decoration: none; + display: flex; + font-size: 16px; + font-family: Cantarell, sans-serif; + margin: 4px 2px; + cursor: pointer; + width: 100px; + height: 40px; + transition-duration: 0.2s; +} + +.button:hover { + background-color: #E0E0E0; +} \ No newline at end of file