website/web/static/css/stylesheet.css
Dan Anglin a0e3ee8a6f
feat: add a landing page for the Flow Platform
Add a landing page for the Flow Platform. The landing page is a
linktree-styled static page made with Go, HTML and CSS.
2023-08-24 13:15:55 +01:00

33 lines
543 B
CSS

body {
background-color: #1e1c31;
text-align: center;
font-family: sans-serif;
font-weight: 600;
}
h1, h2{
color: white;
}
body .links {
max-width: 500px;
margin: auto;
text-align: center;
}
body .links p a {
display: block;
background-color: #296ae2;
color: Thistle;
text-decoration: none;
padding: 15px;
margin-bottom: 10px;
transition: 0.5s;
border-radius: 5px;
}
body .links p a:hover, a:active {
background-color: #719dee;
color: White;
transition: 0.5s;
}