Skip to content

Commit 5479445

Browse files
committed
added mailing list
Signed-off-by: Akash Hadagali <[email protected]>
1 parent d4c6596 commit 5479445

File tree

4 files changed

+84
-0
lines changed

4 files changed

+84
-0
lines changed

docs/_includes/mailing-list.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<section class="mailing-section">
2+
3+
<div class="mailinglist-main">
4+
<div class="mailinglist-text">
5+
<span>Mailing Lists</span>
6+
<p>Engage in the GetNightHawk project. Join any of the mailing list</p>
7+
</div>
8+
9+
10+
<div class="mailinglist-buttons">
11+
<a class="mailinglist-join-button" href="https://groups.google.com/a/getnighthawk.dev/g/maintainers" target="_blank">Maintainers</a>
12+
<a class="mailinglist-join-button" href="https://groups.google.com/a/getnighthawk.dev/g/developers" target="_blank">Developers</a>
13+
<a class="mailinglist-join-button" href="https://groups.google.com/a/getnighthawk.dev/g/users" target="_blank">Users</a>
14+
</div>
15+
16+
</div>
17+
18+
19+
20+
</section>

docs/_sass/mailing-list.scss

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
.mailing-section {
2+
background: #1e2117;
3+
color: white;
4+
5+
6+
a, a:hover, a:focus, a:active{
7+
text-decoration: none;
8+
color: inherit;
9+
}
10+
11+
12+
.mailinglist-main {
13+
margin: 62px auto;
14+
position: relative;
15+
display: flex;
16+
flex-direction: column;
17+
align-items: center;
18+
19+
.mailinglist-text {
20+
21+
22+
margin-bottom: 40px;
23+
display: block;
24+
span{
25+
font-size: 34px;
26+
}
27+
28+
p {
29+
max-width: 375px;
30+
margin: 0 3rem;
31+
color: white;
32+
font-size: 20px;
33+
34+
35+
}
36+
}
37+
38+
.mailinglist-buttons {
39+
display: inline-flex;
40+
flex-wrap: wrap;
41+
justify-content: center;
42+
align-items: center;
43+
44+
.mailinglist-join-button {
45+
display: flex;
46+
justify-content: center;
47+
align-items: center;
48+
background: #647881;
49+
width: 253px;
50+
height: 56px;
51+
border-radius: 5px;
52+
margin: 2rem 0 0;
53+
54+
}
55+
56+
.mailinglist-join-button:not(:first-child) {
57+
margin-left: 1rem;
58+
}
59+
}
60+
}
61+
}

docs/assets/css/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
@import "getnighthawk-purpose.scss";
77
@import "explain.scss";
88
@import "about.scss";
9+
@import "mailing-list.scss";

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,5 @@ <h1 class="desc-h1">Easing Management of <br/>the Nighthawk<br/>Lifecycle</h1><b
194194
{% include stewarded.html %}
195195

196196
{% include organized.html %}
197+
198+
{% include mailing-list.html %}

0 commit comments

Comments
 (0)