From 1f37dce1aec7b0f1eb6d443759797b129a52fe20 Mon Sep 17 00:00:00 2001 From: T_cat9000_2 Date: Sun, 15 Dec 2024 17:35:23 -0800 Subject: [PATCH] first commit --- index.html | 10 ++++++++++ style.css | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e85e841 --- /dev/null +++ b/index.html @@ -0,0 +1,10 @@ + + + + Open-Source-Portal + + +

Welcome to the ADW open-source portal

+

Look at our beloved projects below:

+ +

Learn how to make your own open-source projects on the adw github here

\ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9fbfb2d --- /dev/null +++ b/style.css @@ -0,0 +1,39 @@ +body { + font-family: Arial, sans-serif; + background-color: #e0f7fa; + color: #0d47a1; + margin: 0; + padding: 0; +} + +h1, h2, h3, h4, h5, h6 { + color: #01579b; + text-align: center; + margin: 20px 0; +} + +p { + color: #0277bd; + line-height: 1.6; + margin: 10px 0; + padding: 0 15px; +} + +.button { + background-color: #01579b; + color: #ffffff; + border: none; + border-radius: 20px; + padding: 10px 20px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 10px 2px; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.button:hover { + background-color: #014a85; +} \ No newline at end of file