Restyled applications page

This commit is contained in:
Ethan Paul 2018-12-31 01:28:48 -05:00
parent d154152402
commit 7757f61c9f
2 changed files with 41 additions and 18 deletions

View File

@ -18,23 +18,26 @@
</head> </head>
<body> <body>
<div id="container"> <div id="links">
<div id="links"> <div class="app-link">
<div class="link"> <a href="https://cfs.enp.one/">cloud file system</a><br>
<a href="https://cfs.enp.one/">cloud file system</a> - powered by <a href="https://nextcloud.com/">nextcloud</a> <span class="subtitle">powered by <a href="https://nextcloud.com/">nextcloud</a></span>
</div> </div>
<div class="link"> <div class="app-link">
<a href="https://cdn.enp.one/">content delivery network</a> - powered by <a href="https://www.digitalocean.com/">digital ocean</a> <a href="https://cdn.enp.one/">content delivery network</a><br>
</div> <span class="subtitle">powered by <a href="https://www.digitalocean.com/">digital ocean</a></span>
<div class="link"> </div>
<a href="https://mpw.enp.one/">master password</a> - powered by <a href="https://github.com/tmthrgd/mpw-js">masterpassword js</a> <div class="app-link">
</div> <a href="https://mpw.enp.one/">master password</a><br>
<div class="link"> <span class="subtitle">powered by <a href="https://github.com/tmthrgd/mpw-js">masterpassword js</a></span>
<a href="https://ssv.enp.one/">secure storage vault</a> - powered by <a href="https://bitwarden.com/">bitwarden</a> </div>
</div> <div class="app-link">
<div class="link"> <a href="https://ssv.enp.one/">secure storage vault</a><br>
<a href="https://vcs.enp.one/">version control system</a> - powered by <a href="https://gitea.io/">gitea</a> <span class="subtitle">powered by <a href="https://bitwarden.com/">bitwarden</a></span>
</div> </div>
<div class="app-link">
<a href="https://vcs.enp.one/">version control system</a><br>
<span class="subtitle">powered by <a href="https://gitea.io/">gitea</a></span>
</div> </div>
</div> </div>
</body> </body>

View File

@ -5,12 +5,16 @@
body { body {
background-color: black; background-color: black;
} }
a {
color: white;
}
#container { #container {
width: 50%; width: 50%;
margin-left: 25%; margin-left: 25%;
margin-top: 10%; margin-top: 10%;
} }
#links { #links {
line-height: 1.75rem;
color: white; color: white;
text-align: center; text-align: center;
padding-top: 4rem; padding-top: 4rem;
@ -25,11 +29,22 @@
margin-right: auto; margin-right: auto;
transition: 0.2s; transition: 0.2s;
} }
.app-link {
width: 80%;
padding: .25rem;
margin-top: 2rem;
margin-bottom: 2rem;
margin-left: auto;
margin-right: auto;
transition: 0.2s;
}
.link a { .link a {
color: white;
text-decoration: none; text-decoration: none;
font-family: Verdana; font-family: Verdana;
} }
.app-link a {
font-family: sans;
}
.link:hover { .link:hover {
border-left-color: grey; border-left-color: grey;
border-left-style: solid; border-left-style: solid;
@ -38,6 +53,11 @@
border-right-style: solid; border-right-style: solid;
border-right-width: 2px; border-right-width: 2px;
} }
.app-link .subtitle {
font-style: italic;
font-size: .9rem;
margin-top: .5rem;
}
#logo { #logo {
width: 80px; width: 80px;
position: relative; position: relative;