mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
81 lines
1002 B
CSS
81 lines
1002 B
CSS
/*
|
|
* cf-green: 6ece00;
|
|
* cf-blue: 006ece;
|
|
* cf-purple: 6000ce;
|
|
* cf-orange: ce6000;
|
|
* cf-yellow: cec700;
|
|
* cf-red: ce0006;
|
|
*/
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
a:visited {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
img.logo {
|
|
position: fixed;
|
|
left: 2ch;
|
|
width: 5ch;
|
|
height: 5ch;
|
|
}
|
|
|
|
nav {
|
|
margin: auto;
|
|
padding-top: 0;
|
|
height: 6ch;
|
|
}
|
|
|
|
ul.nav-links {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
max-width: 70ch;
|
|
list-style-type: none;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
ul.nav-links li a {
|
|
display: block;
|
|
padding: 2ch 0;
|
|
}
|
|
|
|
body {
|
|
background-color: #006ece;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
main {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
main section {
|
|
background-color: white;
|
|
}
|
|
div.content {
|
|
max-width: 70ch;
|
|
padding: 2ch;
|
|
margin: auto;
|
|
}
|
|
|
|
footer {
|
|
color: white;
|
|
margin: auto;
|
|
padding-top: 0;
|
|
height: 6ch;
|
|
height:
|
|
}
|
|
|
|
footer div {
|
|
margin: 0 auto;
|
|
padding: 2ch 0;
|
|
max-width: 70ch;
|
|
}
|