-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1f37dce
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |