Skip to content

Commit 030b4e8

Browse files
authored
Merge pull request #43 from haskellfoundation/css-fixes-and-dropdown
Css fixes and dropdown
2 parents ccdd9f0 + ab1b5c6 commit 030b4e8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+568
-467
lines changed

docs/affiliates/about/index.html

+15-22
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="pt-6 flex justify-between">
2222

2323
<div>
24-
<img src="../../static/images/hf-logo-100-alpha.png" width="68" height="52" />
24+
<img src="../../static/images/logos/hf-logo-100-alpha.png" width="68" height="52" />
2525
<div class="text-sm mt-2 text-gray-500">The Haskell Foundation</div>
2626
</div>
2727

@@ -40,42 +40,34 @@
4040

4141

4242
<div href="../../who-we-are" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Who We Are</div>
43-
44-
<a href="../../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
45-
46-
<a href="../../affiliates/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
43+
<a href="../../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
44+
<a href="../../who-we-are/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
4745

4846
<a href="../../projects" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Projects</a>
4947

5048

5149

5250
<div href="../../affiliates" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Affiliates</div>
53-
5451
<a href="../../affiliates" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Affiliates</a>
55-
5652
<a href="../../affiliates/about" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">About Affiliating</a>
5753

5854

5955

6056
<a href="../../contact" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Contact</a>
6157

6258

63-
6459
<a href="../../news" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">News</a>
6560

6661

67-
6862
<a href="../../press" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Press</a>
6963

7064

7165
<a href="../../donations" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Sponsorship</a>
7266

7367

74-
7568
<a href="../../resources" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Resources</a>
7669

7770

78-
7971
<a href="../../faq" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">FAQ</a>
8072

8173

@@ -101,15 +93,15 @@
10193
<ul class="flex space-x-8 xl:space-x-12">
10294

10395
<li class="relative">
104-
<a href="../../who-we-are" id="affiliates-nav-item">Who We Are</a>
96+
<a href="../../who-we-are" id="who-we-are-nav-item">Who We Are</a>
10597

106-
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
98+
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="who-we-are-nav-item-menu">
10799

108-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../../who-we-are">
100+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../../who-we-are">
109101
Current Board
110102
</a>
111103

112-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../../who-we-are/past-boards">
104+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../../who-we-are/past-boards">
113105
Past Boards
114106
</a>
115107

@@ -127,23 +119,18 @@
127119

128120
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
129121

130-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../../affiliates">
122+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../../affiliates">
131123
Affiliates
132124
</a>
133125

134-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../../affiliates/about">
126+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../../affiliates/about">
135127
About Affiliating
136128
</a>
137129

138130
</div>
139131

140132
</li>
141133

142-
<li class="relative">
143-
<a href="../../contact" id>Contact</a>
144-
145-
</li>
146-
147134
<li class="relative">
148135
<a href="../../news" id>News</a>
149136

@@ -164,6 +151,12 @@
164151

165152
</li>
166153

154+
<li class="relative">
155+
<a href="../../contact" id>Contact</a>
156+
157+
</li>
158+
159+
167160
<li class="relative">
168161
<a href="../../faq" id>FAQ</a>
169162

docs/affiliates/index.html

+15-22
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="pt-6 flex justify-between">
2222

2323
<div>
24-
<img src="../static/images/hf-logo-100-alpha.png" width="68" height="52" />
24+
<img src="../static/images/logos/hf-logo-100-alpha.png" width="68" height="52" />
2525
<div class="text-sm mt-2 text-gray-500">The Haskell Foundation</div>
2626
</div>
2727

@@ -40,42 +40,34 @@
4040

4141

4242
<div href="../who-we-are" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Who We Are</div>
43-
44-
<a href="../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
45-
46-
<a href="../affiliates/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
43+
<a href="../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
44+
<a href="../who-we-are/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
4745

4846
<a href="../projects" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Projects</a>
4947

5048

5149

5250
<div href="../affiliates" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Affiliates</div>
53-
5451
<a href="../affiliates" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Affiliates</a>
55-
5652
<a href="../affiliates/about" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">About Affiliating</a>
5753

5854

5955

6056
<a href="../contact" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Contact</a>
6157

6258

63-
6459
<a href="../news" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">News</a>
6560

6661

67-
6862
<a href="../press" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Press</a>
6963

7064

7165
<a href="../donations" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Sponsorship</a>
7266

7367

74-
7568
<a href="../resources" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Resources</a>
7669

7770

78-
7971
<a href="../faq" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">FAQ</a>
8072

8173

@@ -101,15 +93,15 @@
10193
<ul class="flex space-x-8 xl:space-x-12">
10294

10395
<li class="relative">
104-
<a href="../who-we-are" id="affiliates-nav-item">Who We Are</a>
96+
<a href="../who-we-are" id="who-we-are-nav-item">Who We Are</a>
10597

106-
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
98+
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="who-we-are-nav-item-menu">
10799

108-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../who-we-are">
100+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are">
109101
Current Board
110102
</a>
111103

112-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../who-we-are/past-boards">
104+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are/past-boards">
113105
Past Boards
114106
</a>
115107

@@ -127,23 +119,18 @@
127119

128120
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
129121

130-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../affiliates">
122+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates">
131123
Affiliates
132124
</a>
133125

134-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../affiliates/about">
126+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates/about">
135127
About Affiliating
136128
</a>
137129

138130
</div>
139131

140132
</li>
141133

142-
<li class="relative">
143-
<a href="../contact" id>Contact</a>
144-
145-
</li>
146-
147134
<li class="relative">
148135
<a href="../news" id>News</a>
149136

@@ -164,6 +151,12 @@
164151

165152
</li>
166153

154+
<li class="relative">
155+
<a href="../contact" id>Contact</a>
156+
157+
</li>
158+
159+
167160
<li class="relative">
168161
<a href="../faq" id>FAQ</a>
169162

docs/board-nominations/index.html

+15-22
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="pt-6 flex justify-between">
2222

2323
<div>
24-
<img src="../static/images/hf-logo-100-alpha.png" width="68" height="52" />
24+
<img src="../static/images/logos/hf-logo-100-alpha.png" width="68" height="52" />
2525
<div class="text-sm mt-2 text-gray-500">The Haskell Foundation</div>
2626
</div>
2727

@@ -40,42 +40,34 @@
4040

4141

4242
<div href="../who-we-are" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Who We Are</div>
43-
44-
<a href="../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
45-
46-
<a href="../affiliates/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
43+
<a href="../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a>
44+
<a href="../who-we-are/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a>
4745

4846
<a href="../projects" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Projects</a>
4947

5048

5149

5250
<div href="../affiliates" class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Affiliates</div>
53-
5451
<a href="../affiliates" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Affiliates</a>
55-
5652
<a href="../affiliates/about" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">About Affiliating</a>
5753

5854

5955

6056
<a href="../contact" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Contact</a>
6157

6258

63-
6459
<a href="../news" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">News</a>
6560

6661

67-
6862
<a href="../press" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Press</a>
6963

7064

7165
<a href="../donations" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Sponsorship</a>
7266

7367

74-
7568
<a href="../resources" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Resources</a>
7669

7770

78-
7971
<a href="../faq" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">FAQ</a>
8072

8173

@@ -101,15 +93,15 @@
10193
<ul class="flex space-x-8 xl:space-x-12">
10294

10395
<li class="relative">
104-
<a href="../who-we-are" id="affiliates-nav-item">Who We Are</a>
96+
<a href="../who-we-are" id="who-we-are-nav-item">Who We Are</a>
10597

106-
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
98+
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="who-we-are-nav-item-menu">
10799

108-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../who-we-are">
100+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are">
109101
Current Board
110102
</a>
111103

112-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../who-we-are/past-boards">
104+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are/past-boards">
113105
Past Boards
114106
</a>
115107

@@ -127,23 +119,18 @@
127119

128120
<div class="pt-2 absolute top-full w-44 bg-white shadow-md hidden" id="affiliates-nav-item-menu">
129121

130-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../affiliates">
122+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates">
131123
Affiliates
132124
</a>
133125

134-
<a class="block p-4 border-t-2 border-purple-800 hover:bg-gray-50 cursor-pointer" href="../affiliates/about">
126+
<a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates/about">
135127
About Affiliating
136128
</a>
137129

138130
</div>
139131

140132
</li>
141133

142-
<li class="relative">
143-
<a href="../contact" id>Contact</a>
144-
145-
</li>
146-
147134
<li class="relative">
148135
<a href="../news" id>News</a>
149136

@@ -164,6 +151,12 @@
164151

165152
</li>
166153

154+
<li class="relative">
155+
<a href="../contact" id>Contact</a>
156+
157+
</li>
158+
159+
167160
<li class="relative">
168161
<a href="../faq" id>FAQ</a>
169162

0 commit comments

Comments
 (0)