This is an automated email from the ASF dual-hosted git repository.
johnsd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ctakes-site.git
The following commit(s) were added to refs/heads/main by this push:
new a636f36 changing layout
a636f36 is described below
commit a636f36ad7d414d8573bb975821f7e4a00ea543a
Author: Johnsd11 <[email protected]>
AuthorDate: Wed Mar 5 17:25:39 2025 -0500
changing layout
---
index.html | 27 +++++++++++++++------------
styles.css | 28 ++++++++++++++++++++++++++++
2 files changed, 43 insertions(+), 12 deletions(-)
diff --git a/index.html b/index.html
index 5f44408..80bbde6 100644
--- a/index.html
+++ b/index.html
@@ -7,31 +7,34 @@
<link rel="stylesheet" href="styles.css"> <!-- Optional: Add a custom
stylesheet -->
</head>
<body>
+
<div class="branding">
<img src="Apache_Software_Foundation_Logo_(2016).svg.png" alt="Apache
cTAKES Logo" />
<p>Apache cTAKES is an open-source project of the Apache Software
Foundation.</p>
</div>
-<div class="navbar">
- <ul>
- <li><a href="https://www.apache.org/licenses/">License</a></li>
- <li><a
href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
- <li><a href="https://www.apache.org/foundation/thanks.html">Thanks to
our Sponsors</a></li>
- <li><a href="https://www.apache.org/security/">Security</a></li>
- <li><a
href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy</a></li>
- <li><a href="https://www.apache.org/">Apache Home</a></li>
- </ul>
-</div>
-
<div class="landing-page">
<h1>Welcome to Apache cTAKES</h1>
<p>The Apache cTAKES website has moved to its new GitHub repository.
Please follow the link below to access the documentation and other
resources:</p>
- <a href="https://github.com/apache/ctakes/wiki" target="_blank">
+ <a class="main-link"
href="https://github.com/apache/ctakes?tab=readme-ov-file#apache-ctakes"
target="_blank">
Visit the GitHub Wiki
</a>
</div>
+
+
+
<footer>
+ <div class="navbar">
+ <ul>
+ <li><a href="https://www.apache.org/licenses/">License</a></li>
+ <li><a
href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
+ <li><a href="https://www.apache.org/foundation/thanks.html">Thanks
to our Sponsors</a></li>
+ <li><a href="https://www.apache.org/security/">Security</a></li>
+ <li><a
href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy</a></li>
+ <li><a href="https://www.apache.org/">Apache Home</a></li>
+ </ul>
+ </div>
<p>This project is an Apache project and is part of a larger community of
developers and users.</p>
</footer>
</body>
diff --git a/styles.css b/styles.css
index 5e5d51c..b3267aa 100644
--- a/styles.css
+++ b/styles.css
@@ -4,6 +4,30 @@ body {
padding: 50px;
}
+html, body {
+ height: 100%;
+ margin: 0;
+ display: flex;
+ flex-direction: column;
+}
+
+.main-link {
+ display: inline-block;
+ background-color: #007bff; /* Button color */
+ color: white; /* Text color */
+ font-size: 1.2rem;
+ padding: 12px 20px;
+ border-radius: 5px; /* Rounded corners */
+ text-decoration: none;
+ font-weight: bold;
+ transition: background 0.3s ease;
+}
+
+.main-link:hover {
+ background-color: #0056b3; /* Darker blue on hover */
+}
+
+
.navbar ul {
list-style-type: none;
margin: 0;
@@ -29,12 +53,16 @@ body {
.landing-page {
max-width: 600px;
margin: 20px auto;
+ flex: 1;
}
footer {
margin-top: 40px;
font-size: 14px;
color: #777;
+ background-color: #f8f9fa;
+ text-align: center;
+ padding: 10px 0;
}
.branding img {