UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 348bf91e authored by Graham Smith's avatar Graham Smith
Browse files

initial footer

parent c7ad1213
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,6 @@ body { ...@@ -65,7 +65,6 @@ body {
font-family: "Open Sans", sans-serif; font-family: "Open Sans", sans-serif;
text-transform: uppercase; text-transform: uppercase;
font-weight: 800; font-weight: 800;
color: #000000;
margin-left: 2rem; margin-left: 2rem;
margin-right: 2rem; margin-right: 2rem;
} }
......
src/assets/images/branches/af-logo-white.png

1.38 KiB

src/assets/images/icons/Logo_P1_Yodahead-WH.png

8.54 KiB

<template> <template>
<footer class="footer container-fluid py-4"> <footer class="footer py-4">
<div class="d-flex flex-column align-items-center"> <div class="container">
<p class="mb-2">PLATFORM ONE</p> <div class="row tl-row">
<div class="embed-responsive li-embed "> <div
<iframe class="embed-responsive-item" src="./static/li.html" /> class="col-lg-2 col-md-6 mb-4 mb-lg-0 d-flex flex-column align-items-center"
>
<img
class="my-auto"
src="@/assets/images/icons/Logo_P1_Yodahead-WH.png"
/>
</div>
<div
class="col-lg-2 col-md-6 mb-4 mb-lg-0 d-flex flex-column align-items-center"
>
<h6 class="mx-0 mt-auto">Get Connected</h6>
<div class="embed-responsive li-embed mb-auto">
<iframe class="embed-responsive-item" src="./static/li.html" />
</div>
</div>
<div
class="col-lg-4 col-md-6 mb-4 mb-lg-0 d-flex flex-column justify-content-center"
>
<div>
<img width="80" src="@/assets/images/branches/af-logo-white.png" />
</div>
United States Air Force Website
</div>
<div class="col-lg-4 col-md-6 mb-4 mb-lg-0">
<div class="d-flex flex-column mx-auto link-container">
<ExternalLink
inline
class="text-left"
href="https://software.af.mil"
>
Chief Software Officer Site
</ExternalLink>
<ExternalLink inline class="text-left" href="https://repo1.dsop.io">
Repo One
</ExternalLink>
<ExternalLink
inline
class="text-left"
href="https://ironbank.dsop.io"
>
Iron Bank
</ExternalLink>
<ExternalLink
inline
class="text-left"
href="https://software.af.mil/training/"
>
DevSecOps Training Resources
</ExternalLink>
<ExternalLink
inline
class="text-left"
href="https://chat.collab.cdl.af.mil/"
>
Chat
</ExternalLink>
<ExternalLink
inline
class="text-left"
href="https://repo1.dsop.io/dsawg-devsecops/"
>
DSAWG on Repo1
</ExternalLink>
</div>
</div>
</div> </div>
</div> </div>
</footer> </footer>
</template> </template>
<script> <script>
export default {}; import ExternalLink from "@/components/ExternalLink";
export default {
components: {
ExternalLink
}
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.footer { .footer {
position: relative; background-color: $secondary-bg-color;
background-color: $primary-bg-color; color: $secondary-text-color;
border-top: 1px solid #c6c6c6; border-top: 1px solid #c6c6c6;
color: #000000;
p { .tl-row > * {
font-family: "Anton", sans-serif !important; border-right: 1px solid #c6c6c6;
letter-spacing: 0.06rem;
font-size: 1.5rem; &:last-child {
border-right: none;
}
}
.link-container {
max-width: 255px;
a {
white-space: nowrap;
}
}
h6 {
color: $secondary-text-color;
} }
.li-embed { .li-embed {
height: 40px; height: 40px;
min-width: 130px;
}
@include media-breakpoint-down(md) {
.tl-row > * {
border-right: none;
}
}
@include media-breakpoint-down(sm) {
} }
} }
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment