initial commit
This commit is contained in:
parent
9f782ce3d0
commit
f57d0c9c22
50 changed files with 5010 additions and 2 deletions
61
src/components/FemtoHeader.svelte
Normal file
61
src/components/FemtoHeader.svelte
Normal file
|
@ -0,0 +1,61 @@
|
|||
<script>
|
||||
import FemtoStarLogo from "./FemtoStarLogo.svelte";
|
||||
</script>
|
||||
|
||||
<div class="femtoHeader">
|
||||
<div class="femtoLogotypeContainer"><FemtoStarLogo /><span class="femtoLogotype">FemtoStar</span></div>
|
||||
<h2>Satellite communications, done differently.</h2>
|
||||
|
||||
<div class="introText">
|
||||
<p>
|
||||
The FemtoStar Project is a global community developing a satellite
|
||||
constellation for secure, open, and private communications - anywhere on
|
||||
planet Earth.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: Jost;
|
||||
src: url(../../Jost.ttf);
|
||||
}
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
background-color: #00111d;
|
||||
color: #ffffff;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.femtoLogotypeContainer{
|
||||
|
||||
}
|
||||
|
||||
.femtoLogotype{
|
||||
font-weight: 500;
|
||||
font-family: Jost, sans-serif;
|
||||
font-size: 3.0em;
|
||||
}
|
||||
|
||||
svg {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.introText {
|
||||
width: 100%;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
p {
|
||||
max-width: 512px;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue