-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73fdfd6
commit d436ff8
Showing
1 changed file
with
158 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
<!DOCTYPE html> | ||
|
||
<style type="text/css"> | ||
|
||
@font-face { | ||
font-family: jonsans; | ||
src: url('DejaVuSansMono.ttf'); | ||
} | ||
|
||
* { | ||
-webkit-margin-before: 0em; | ||
-webkit-margin-after: 0em; | ||
-webkit-margin-start: 0px; | ||
-webkit-margin-end: 0px;w | ||
} | ||
|
||
body { | ||
font-size: 10pt; | ||
background: #151515; | ||
line-height: 1.5; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
#space { | ||
padding: 70px; | ||
} | ||
|
||
#links { | ||
color: #57698B; | ||
cursor: pointer; | ||
display: flex; | ||
font-family: 'jonsans', serif; | ||
justify-content: center; | ||
margin-top: 100px; | ||
} | ||
|
||
#red { | ||
color: #6883bf; | ||
} | ||
|
||
#red:hover { | ||
color: #ef95c2; | ||
} | ||
|
||
#links .selection { | ||
text-align: center; | ||
} | ||
|
||
#links .box { | ||
background-color: #151515; | ||
margin: 0px 20px 0px 20px; | ||
padding: 10px 10px 10px 10px; | ||
outline: #3C3B41; | ||
outline-style: solid; | ||
outline-width: 0px; | ||
} | ||
|
||
#links .box h2 { | ||
text-align: center; | ||
margin-bottom: 5px; | ||
} | ||
|
||
#links .box .list ul { | ||
list-style: none; | ||
margin-top: 5px; | ||
margin-right: 30px; | ||
} | ||
|
||
#links .box .list ul li a { | ||
color: #c5cfe0; | ||
text-decoration: none; | ||
|
||
} | ||
|
||
#links .box .list ul li a:hover { | ||
color: #ef95c2; | ||
} | ||
|
||
</style> | ||
|
||
<html> | ||
|
||
<head> | ||
<link rel="shortcut icon" type="image/png" href="fav.png"/> | ||
<title>start page</title> | ||
<meta charset="utf-8" /> | ||
</head> | ||
|
||
<body onload="startpage2();"> | ||
|
||
<div id="space"></div> | ||
<div id="links"> | ||
<div class="box"> | ||
<div class="list"> | ||
<ul> | ||
<li>planhub</li> | ||
<li><a href="https://app.planhub.com/#/pages/adminProjectList">portal</a></li> | ||
<li><a href="https://adminportal.planhub.com/project">admin portal</a></li> | ||
|
||
<br> | ||
<li><a href="https://adminportal.planhub.com/contractors">contractors</a></li> | ||
|
||
<br> | ||
<li><a href="https://ips.planhub.com/admin/"><div id="red">scraper</div></a></li> | ||
|
||
<br> | ||
<li><a href="https://docs.google.com/spreadsheets/d/1TMVtg8NUrBNpEq5kCw_0uaIfJuStlFPqUQfpXQ0wC8c/edit?gid=2086643916#gid=2086643916">TAM map</a></li> | ||
|
||
<br> | ||
<li><a href="https://sites.google.com/planhub.com/intranet/home">intranet</a></li> | ||
<li><a href="https://planhub.atlassian.net/servicedesk/customer/portals">helpdesk</a></li> | ||
|
||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="box"> | ||
<div class="list"> | ||
<ul> | ||
<li>hubspot</li> | ||
<li><a href="https://app.hubspot.com/tasks/7063061/view/all"><div id="red">tasks</div></a></li> | ||
<li><a href="https://app.hubspot.com/contacts/7063061/objects/0-5/views/43788420/list">tickets</a></li> | ||
|
||
<br> | ||
<li><a href="https://app.hubspot.com/contacts/7063061/objects/0-1/views/all/list">contacts</a></li> | ||
<li><a href="https://app.hubspot.com/contacts/7063061/objects/0-2/views/all/list">companies</a></li> | ||
|
||
<br> | ||
<li><a href="https://app.hubspot.com/reports-dashboard/7063061/view/8289200">dashboard</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="box"> | ||
<div class="list"> | ||
<ul> | ||
<li>title</li> | ||
<li><a href="https://app.rippling.com/dashboard">rippling</a></li> | ||
|
||
<br> | ||
<li><a href="https://rocketreach.co/person"><div id="red">rocketreach</div></a></li> | ||
|
||
<br> | ||
<li><a href="https://github.com/WatermelonDriveway/website/edit/gh-pages/startpage2.html"><div id="red">edit</div></a></li> | ||
|
||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</body> | ||
</html> |