28 lines
488 B
Text
28 lines
488 B
Text
---
|
|
---
|
|
|
|
<div>
|
|
<span>
|
|
I am currently working on a site to catalogue past and future TAs.<br/>
|
|
Check it out at <a href="https://fgo-ta.com">fgo-ta.com</a>
|
|
</span>
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 5em;
|
|
background-color: var(--c-gray);
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5em;
|
|
}
|
|
a {
|
|
color: var(--c-darkpurple);
|
|
text-decoration: none;
|
|
}
|
|
</style>
|