Skip to content

Commit 8033665

Browse files
author
Felix Hennig
committed
Added some responsiveness
1 parent f8eadb3 commit 8033665

File tree

2 files changed

+41
-22
lines changed

2 files changed

+41
-22
lines changed

src/css/footer.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,18 @@ footer.footer {
1313
.footer a {
1414
color: var(--footer-link-font-color);
1515
}
16+
17+
@media screen and (max-width: 720px) {
18+
.c-and-socials {
19+
display: flex;
20+
flex-direction: column;
21+
align-items: center;
22+
}
23+
}
24+
25+
@media screen and (min-width: 720px) {
26+
.c-and-socials {
27+
display: flex;
28+
justify-content: space-between;
29+
}
30+
}

src/partials/footer-content.hbs

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
<footer class="footer">
2-
<div style="display: flex; justify-content: space-between">
3-
<div>© 2022 Stackable.</div>
4-
<div>social links go here</div>
2+
<div class="container">
3+
<div>
4+
<div class="c-and-socials">
5+
<div>© 2022 Stackable.</div>
6+
<div>social links go here</div>
7+
</div>
8+
9+
</p>
10+
<!-- copyright notice -->
11+
<p>
12+
Apache, Apache Kafka®, Kafka, and the Kafka logo, Apache Druid, Druid, and the Druid logo,
13+
Apache ZooKeeper™, ZooKeeper, and the Druid logo, Apache Hive™, Hive, and the Hive logo,
14+
Apache Spark™, Spark, and the Spark logo, Apache Airflow, Airflow, and the Airflow logo,
15+
Apache HBase®, HBase, and the HBase logo, Apache NiFi, NiFi, and the NiFi logo, Apache
16+
Superset, Superset, the Superset logo, Apache Hadoop® HDFS, Apache Hadoop, Hadoop and the
17+
Hadoop logo, Apache Phoenix™, Phoenix and the Phoenix-Logo, Apache Iceberg, Iceberg and the
18+
Iceberg-Logo are either registered trademarks or trademarks of the Apache Software Foundation
19+
in the United States and/or other countries. Open Policy Agent (OPA) is a Cloud Native
20+
Computing Foundation graduated project. Licensed under the Apache License, Version 2.0. Trino
21+
is open source software licensed under the Apache License 2.0 and supported by the Trino
22+
Software Foundation. MinIO is a [“registered”, if applicable] trademark of the MinIO
23+
Corporation. All other products or name brands are trademarks of their respective holders.
24+
All product and service names used in this website are for identification purposes only and
25+
do not imply endorsement.
26+
</p>
27+
</div>
528
</div>
6-
7-
</p>
8-
<!-- copyright notice -->
9-
<p>
10-
Apache, Apache Kafka®, Kafka, and the Kafka logo, Apache Druid, Druid, and the Druid logo,
11-
Apache ZooKeeper™, ZooKeeper, and the Druid logo, Apache Hive™, Hive, and the Hive logo,
12-
Apache Spark™, Spark, and the Spark logo, Apache Airflow, Airflow, and the Airflow logo,
13-
Apache HBase®, HBase, and the HBase logo, Apache NiFi, NiFi, and the NiFi logo, Apache
14-
Superset, Superset, the Superset logo, Apache Hadoop® HDFS, Apache Hadoop, Hadoop and the
15-
Hadoop logo, Apache Phoenix™, Phoenix and the Phoenix-Logo, Apache Iceberg, Iceberg and the
16-
Iceberg-Logo are either registered trademarks or trademarks of the Apache Software Foundation
17-
in the United States and/or other countries. Open Policy Agent (OPA) is a Cloud Native
18-
Computing Foundation graduated project. Licensed under the Apache License, Version 2.0. Trino
19-
is open source software licensed under the Apache License 2.0 and supported by the Trino
20-
Software Foundation. MinIO is a [“registered”, if applicable] trademark of the MinIO
21-
Corporation. All other products or name brands are trademarks of their respective holders.
22-
All product and service names used in this website are for identification purposes only and
23-
do not imply endorsement.
24-
</p>
2529
</footer>

0 commit comments

Comments
 (0)