Skip to content

Commit d7d7f97

Browse files
committed
Resolved merge conflict in index.html
2 parents 088ed68 + 04f30da commit d7d7f97

File tree

5 files changed

+64
-20
lines changed

5 files changed

+64
-20
lines changed

feather.png

135 KB
Loading

index.html

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,33 @@
1010

1111
<div class="branding">
1212
<img src="Apache_Software_Foundation_Logo_(2016).svg.png" alt="Apache cTAKES Logo" />
13+
<p>Apache cTAKES&trade; is an open-source project of the Apache Software Foundation</p>
1314
</div>
1415

1516
<div class="landing-page">
16-
<h1>Welcome to Apache cTAKES</h1>
17-
<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>
18-
<a href="https://github.com/apache/ctakes?tab=readme-ov-file#apache-ctakes">
19-
Visit the Apache cTAKES GitHub Site
17+
<h1>Welcome to Apache cTAKES&trade;</h1>
18+
<p>The Apache cTAKES&trade; project has moved to a GitHub repository. Please follow the link below to access documentation and other resources:</p>
19+
<a class="main-link" href="https://github.com/apache/ctakes?tab=readme-ov-file#apache-ctakes" target="_blank">
20+
Visit the GitHub Wiki
2021
</a>
2122
</div>
2223

23-
<div class="branding">
24-
<p>Apache cTAKES is an open-source project of the Apache Software Foundation.</p>
25-
</div>
26-
27-
<div class="navbar">
28-
<ul>
29-
<li><a href="https://www.apache.org/licenses/">License</a></li>
30-
<li><a href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
31-
<li><a href="https://www.apache.org/foundation/thanks.html">Thanks to our Sponsors</a></li>
32-
<li><a href="https://www.apache.org/security/">Security</a></li>
33-
<li><a href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy</a></li>
34-
<li><a href="https://www.apache.org/">Apache Home</a></li>
35-
</ul>
36-
</div>
37-
3824
<footer>
25+
<div class="footer-images">
26+
<!-- <img src="pb-ctakes.jpg" alt="Image 1" class="footer-img">-->
27+
<img src="pb-apache.PNG" alt="Image 2" class="footer-img">
28+
</div>
29+
<div class="navbar">
30+
<ul>
31+
<li><a href="https://www.apache.org/licenses/">License</a></li>
32+
<li><a href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
33+
<li><a href="https://www.apache.org/foundation/thanks.html">Thanks to our Sponsors</a></li>
34+
<li><a href="https://www.apache.org/security/">Security</a></li>
35+
<li><a href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy</a></li>
36+
<li><a href="https://www.apache.org/">Apache Home</a></li>
37+
</ul>
38+
</div>
39+
3940
<p>This project is an Apache project and is part of a larger community of developers and users.</p>
4041
</footer>
4142
</body>

pb-apache.PNG

14.8 KB
Loading

pb-ctakes.jpg

214 KB
Loading

style.css

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ body {
44
padding: 50px;
55
}
66

7+
html, body {
8+
height: 100%;
9+
margin: 0;
10+
display: flex;
11+
flex-direction: column;
12+
}
13+
14+
.main-link {
15+
display: inline-block;
16+
background-color: #007bff; /* Button color */
17+
color: white; /* Text color */
18+
font-size: 1.2rem;
19+
padding: 12px 20px;
20+
border-radius: 5px; /* Rounded corners */
21+
text-decoration: none;
22+
font-weight: bold;
23+
transition: background 0.3s ease;
24+
}
25+
26+
.main-link:hover {
27+
background-color: #0056b3; /* Darker blue on hover */
28+
}
29+
30+
731
.navbar ul {
832
list-style-type: none;
933
margin: 0;
@@ -13,7 +37,7 @@ body {
1337

1438
.navbar li {
1539
display: inline;
16-
margin: 10px;
40+
margin: 10px;''
1741
}
1842

1943
.navbar a {
@@ -29,15 +53,34 @@ body {
2953
.landing-page {
3054
max-width: 600px;
3155
margin: 20px auto;
56+
flex: 1;
57+
}
58+
59+
60+
.navbar {
61+
margin-left: 150px; /* Adjust based on image width */
62+
}
63+
64+
footer p{
65+
margin-left: 150px; /* Adjust based on image width */
3266
}
3367

3468
footer {
3569
margin-top: 40px;
3670
font-size: 14px;
3771
color: #777;
72+
background-color: #f8f9fa;
73+
text-align: center;
74+
padding: 10px 0;
3875
}
3976

4077
.branding img {
4178
width: 450px; /* Adjust width as needed */
4279
height: auto; /* Maintain aspect ratio */
4380
}
81+
82+
.footer-img {
83+
width: 100px; /* Adjust width as needed */
84+
height: auto; /* Maintain aspect ratio */
85+
float: right;
86+
}

0 commit comments

Comments
 (0)