Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
webbrowser11 authored Dec 16, 2024
0 parents commit 1f37dce
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
<title>Open-Source-Portal</title>
</head>

<h1>Welcome to the ADW open-source portal</h1>
<p>Look at our beloved projects below:</p>
<button type="button"><a href="https://github.com/ADW-Development/Passionfruit">Passionfruit</a></button>
<p>Learn how to make your own open-source projects on the adw github <a href="adw-development.github.io/open-source-portal">here</a></p>
39 changes: 39 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 1f37dce

Please sign in to comment.