Homepage update
This commit is contained in:
parent
aba563edbd
commit
bcdf749718
1 changed files with 95 additions and 0 deletions
95
homepage/src/homepage.html
Normal file
95
homepage/src/homepage.html
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<header></header>
|
||||||
|
<body>
|
||||||
|
<div id="links">
|
||||||
|
<h3>Work</h3>
|
||||||
|
<li><a href="https://eu1.replicon.com/Enigma/my/timesheet/current">Time Sheet</a></li>
|
||||||
|
<li><a href="https://app.passpack.com/login">Passpack</a></li>
|
||||||
|
<li><a href="https://enigma-interactive.atlassian.net/jira/your-work">Jira</a></li>
|
||||||
|
<li><a href="https://enigma-interactive.atlassian.net/wiki/home">Confluence</a></li>
|
||||||
|
<h3>NGED</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://enigma-interactive.atlassian.net/wiki/spaces/WPD/pages/34080968/NGED+Daily+Dashboard">Daily Dashboard</a></li>
|
||||||
|
<li><a href="https://yourpowerfuture.wsl.michals.dev.enigma.lan/">Your Power Future Dev</a></li>
|
||||||
|
<li><a href=""></a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Dev Tools</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://caniuse.com">Can I Use?</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Misc</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://soundcloud.com/">Soundcloud</a></li>
|
||||||
|
<li><a href="https://news.ycombinator.com/">Hacker News</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
</body>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
margin:0px auto;
|
||||||
|
max-width:700px;
|
||||||
|
font-size:18px;
|
||||||
|
line-height:1.4;
|
||||||
|
padding:10px;
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration:none;
|
||||||
|
color:MediumSeaGreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
font-size:14px;
|
||||||
|
padding:0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul, li {
|
||||||
|
padding: 0 0px;
|
||||||
|
margin: 0px auto;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h3 {
|
||||||
|
padding:0 0px;
|
||||||
|
margin:0px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
padding 5 5px;
|
||||||
|
margin: 5px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header, #content {
|
||||||
|
padding:0 0px;
|
||||||
|
margin:5px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width:100%;
|
||||||
|
height:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme:dark) {
|
||||||
|
body {
|
||||||
|
background-color:#222;
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
tr:hover {
|
||||||
|
background-color:#333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
body {
|
||||||
|
background-color:#fff;
|
||||||
|
color:#444;
|
||||||
|
}
|
||||||
|
tr:hover {
|
||||||
|
background-color:#eee;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</html>
|
Loading…
Reference in a new issue