update 1802121113
58
app/reset_EM-2.0.css
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
/* vertical-align: baseline; - VKS */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* VKS */
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
239
app/stylesheet.css
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
/* VK Services, LLC
|
||||||
|
v1.0 | 20180210
|
||||||
|
License: none (public)
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import url('reset_EM-2.0.css');
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
||||||
|
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
|
||||||
|
|
||||||
|
body {
|
||||||
|
width: 960px;
|
||||||
|
margin: 0 auto;
|
||||||
|
background: aliceblue;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
|
||||||
|
header {
|
||||||
|
margin-top: 24px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h2 {
|
||||||
|
padding-bottom: 9px;
|
||||||
|
border-bottom: 2px solid darkgreen;
|
||||||
|
font-size: 120%;
|
||||||
|
font-weight: bold;
|
||||||
|
color: darkgreen;
|
||||||
|
letter-spacing: 1.2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation: Top */
|
||||||
|
|
||||||
|
nav#top {
|
||||||
|
margin-top: 24px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
width: 960px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top ul.sub1 > li {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.left{
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top a {
|
||||||
|
display: block;
|
||||||
|
padding: 7.4px 10.64px;
|
||||||
|
background: black;
|
||||||
|
color: lightblue;
|
||||||
|
border-right: 1px solid gray;
|
||||||
|
border-bottom: 1px solid gray;
|
||||||
|
font-family: 'Roboto Condensed', sans-serif;
|
||||||
|
letter-spacing: 0.4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top a em {
|
||||||
|
font-size: 84%;
|
||||||
|
color: lightgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top a span {
|
||||||
|
font-size: 77%;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top .sub1 > li > a {
|
||||||
|
border-top: 1px solid gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top a.bl {
|
||||||
|
border-left: 1px solid gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top .sub2 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub3 {
|
||||||
|
position: absolute;
|
||||||
|
top: 33px;
|
||||||
|
left: 103.4px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub4 {
|
||||||
|
position: absolute;
|
||||||
|
top: 64.5px;
|
||||||
|
left: 103.4px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub5 {
|
||||||
|
position: absolute;
|
||||||
|
top: 96px;
|
||||||
|
left: 103.4px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top .sub1 li:hover .sub2 {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top .sub1 li:hover .sub2 li:hover .sub3,
|
||||||
|
nav#top .sub1 li:hover .sub2 li:hover .sub4,
|
||||||
|
nav#top .sub1 li:hover .sub2 li:hover .sub5 {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav#top a.h:hover {
|
||||||
|
background: green;
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation: Favs */
|
||||||
|
|
||||||
|
fieldset.favs {
|
||||||
|
position: relative;
|
||||||
|
top: 64px;
|
||||||
|
margin-top: 24px;
|
||||||
|
padding: 24px 24px 36px 24px;
|
||||||
|
background: azure;
|
||||||
|
border: 1px solid darkblue;
|
||||||
|
border-radius: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
letter-spacing: 0.4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs legend {
|
||||||
|
padding: 6px 32px;
|
||||||
|
background: darkblue;
|
||||||
|
color: lightblue;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 78%;
|
||||||
|
letter-spacing: 0.62px;
|
||||||
|
border-radius: 17px 9px 17px 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs table {
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td {
|
||||||
|
color: rgba(153, 38, 0, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td.rsp {
|
||||||
|
color: darkgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs th,
|
||||||
|
fieldset.favs td {
|
||||||
|
padding-top: 7.2px;
|
||||||
|
padding-bottom: 7.2px;
|
||||||
|
border-bottom: 1px solid lightblue;
|
||||||
|
font-family: Roboto, sans-serif;
|
||||||
|
line-height: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td.rsp {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td.rsp ul {
|
||||||
|
position: absolute;
|
||||||
|
right: 32px;
|
||||||
|
z-index: 1;
|
||||||
|
display: none;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td.rsp ul li {
|
||||||
|
padding: 6.7px 32px;
|
||||||
|
background: azure;
|
||||||
|
border-bottom: 1px solid lightblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td.rsp:hover ul {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td a.h {
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs th span,
|
||||||
|
fieldset.favs td span {
|
||||||
|
font-size: 84%;
|
||||||
|
font-weight: normal;
|
||||||
|
letter-spacing: 0.2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.favs td a.h:hover {
|
||||||
|
color: darkgreen;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Table Cell x-Paddings */
|
||||||
|
|
||||||
|
fieldset.favs th {
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 24px;
|
||||||
|
padding-right: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favs .urls td {
|
||||||
|
padding-left: 64.7px;
|
||||||
|
padding-right: 64.7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favs .monit td {
|
||||||
|
padding-left: 12px;
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favs .shcuts1 td {
|
||||||
|
padding-left: 26px;
|
||||||
|
padding-right: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favs .shcuts2 td {
|
||||||
|
padding-left: 19px;
|
||||||
|
padding-right: 19px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.favs .tools td {
|
||||||
|
padding-left: 77px;
|
||||||
|
padding-right: 77px;
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 267 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
194
index.html
@@ -1,194 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="author" content="VK Services">
|
|
||||||
<meta http-equiv="refresh" content="240">
|
|
||||||
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
|
|
||||||
<title> Link Board </title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="style/index/style.css">
|
|
||||||
<link rel="icon" type="image/x-icon" href="image/icon/home.ico">
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<!-- Navigation Menu ===================================================================================================================================== -->
|
|
||||||
|
|
||||||
<div id="header">
|
|
||||||
<ul id="navmenu">
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/1HLWwjjp85TrvblKI65Z0PkI8ze4cSWMW"> <i class="itnav">+ Add </i> WORKSHEET </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fjF4VVpZZzNhUzJsMk9XZlQxN09DRkhVZVcwcnFUUGJkN0VKRWJhNUh1V0U"> SCANS </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fmJYa21WcTMxUDBxakZtXzl3N0o5SGpvUlRxWFVrZmZXblVhdFl6NW42R2c"> EXPENSE </a></li>
|
|
||||||
<li><a class="e" href="#"> URLs / Hyperlinks ▾ </a>
|
|
||||||
<ul class="sub1">
|
|
||||||
|
|
||||||
<li><a class="e" href="#"> Expanded History ▸ </a>
|
|
||||||
<ul class="sub2"> <!-- Hyperlinks -->
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1KOkNhPxqqfn4a0AG2rk1aG5-ag711b5nPg6byKwbZtA/edit#gid=1250765514">
|
|
||||||
<!-- 007 --> Jan 28 – Feb 3 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1l2UIAQl37sXLmP94VzuHNs3TJK97XIIyHHNEcuHvCFQ/edit#gid=1250765514">
|
|
||||||
<!-- 006 --> Jan 21 – Jan 27 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1MVaFa-DaABTjKsXgF085o56tHfR6UYPjXyxexKgR460/edit#gid=1250765514">
|
|
||||||
<!-- 005 --> Jan 14 – Jan 20 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1_tfsoL4JQ91wGtafc1ENRiTx2NovxFNyIBOL8H0Gw7s/edit#gid=1250765514">
|
|
||||||
<!-- 004 --> Jan 7 – Jan 13 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1uetpiUWxKk20prlCmAq-GJeMoLtjwuBPU2Ocjd92no0/edit#gid=1250765514">
|
|
||||||
<!-- 003 --> Dec 31 – Jan 6 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1E8Hl6Ljkll1ygu95FVra-YHmFwArK57HkexbvbWifOw/edit#gid=2098636241">
|
|
||||||
<!-- 002 --> Dec 24 – Dec 30 </a></li>
|
|
||||||
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1wjlfZ9A9uYIEY8D_NvfZMWYFBMTjf3STC3WXV2kRhAI/edit#gid=1948207105">
|
|
||||||
<!-- 001 --> Dec 17 – Dec 23 </a></li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/1GuP0ad8znZxIZ34fzsqW000x7SMYFovH"> <i class="itnav">+ Create New </i> Week </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> EFS Monitoring <i class="itnav"> User 2</i> ▾ </a>
|
|
||||||
<ul class="sub1">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1qc17LJIBoFAMPf0PZf8kn5zYghyV8GzHeIKVU0t3WTo/edit#gid=0"> Account List </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/10GJhehRuVkQsMlXS3NEV5ymEV74bgVYo"> <i class="itnav">+ Create New </i> Month </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/1S01wzvFY7Qb2AWeJDa5iB0L5Gdydjqh6"> <i class="itnav">+ Create New </i> Quarter </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> Sites ▾ </a>
|
|
||||||
<ul class="sub1">
|
|
||||||
<li><a class="e" href="#"> RPM ▸ </a>
|
|
||||||
<ul class="sub2">
|
|
||||||
<li><a class="h" target="_blank" href="http://rpmcarolina.com/default.aspx"> Carolina Logistic </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="http://www.rpmowners.com/default.aspx"> Carolina Transportation </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="http://dispatchdelta.com/default.aspx"> Delta Express </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank" href="https://www.tch.com/security/logon.jsp"> EFS </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drivershr.com/hrm/login.php"> HRM </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://onedrive.live.com/?id=root&cid=7CDFEFDDB08A7009"> OneDrive <i class="itnav"> Payroll Storage</i> </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://www.google.com/maps/"> Google Maps </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://track.rpmdispatch.com/v2/#!/login"> Tracking <i class="itnav"> New</i> </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://track.rpmdispatch.com/user/login#!/login"> Tracking <i class="itnav"> Old</i> </a></li>
|
|
||||||
<li><a class="e" href="#"> Chat ▸ </a>
|
|
||||||
<ul class="sub2">
|
|
||||||
<li><a class="h" target="_blank" href="https://hangouts.google.com/?authuser=0&pageId=none"> Hangouts <i class="itnav"> User 1</i> </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://hangouts.google.com/?authuser=1&pageId=none"> Hangouts <i class="itnav"> User 2</i> </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> eMail ▸ </a>
|
|
||||||
<ul class="sub2">
|
|
||||||
<li><a class="h" target="_blank" href="https://mail.google.com/mail/u/0/#inbox"> Gmail <i class="itnav"> User 1</i> </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://mail.google.com/mail/u/1/#inbox"> Gmail <i class="itnav"> User 2</i> </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> Database ▾ </a>
|
|
||||||
<ul class="sub1">
|
|
||||||
<li><a class="e" href="#"> ◂ Fleet </a>
|
|
||||||
<ul class="sub3">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=709800642"> Companies </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=1647351910"> Units </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> ◂ People </a>
|
|
||||||
<ul class="sub3">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=2023496076"> Contractors </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=1909787109"> Employees </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> ◂ Rates </a>
|
|
||||||
<ul class="sub3">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=766944046"> Basic </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=643630212"> Canada </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=702297004"> Regular Stops </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=1091142582"> Extra Stops </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=1270985435"> Towing </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=2102185617"> Bonus </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=916575852"> Charge / Company Reimb </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> ◂ Towing </a>
|
|
||||||
<ul class="sub3">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1XIJ5TR1zuEODW8CRWTSd2QNNlyYexa5OwGLoVvnMmnk/edit#gid=1229815017"> Payments </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/19tBRKV_SZK3Wg4b5dabtIoTapz5iO4n0GN0K3eovWMc/edit#gid=1990489309"> Input </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="e" href="#"> ◂ Global Board </a>
|
|
||||||
<ul class="sub3">
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/19koCtNrSbUujxfcZfqA5ZCHCvkPCvgw7-lUaK0gBQNU/edit?ts=5a79d31c#gid=0"> CL / CT / DE / DES </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1lWaqBNQXaqhoQXOUGn2mjFpzjqm7B1JHjuSzGOcJgSg/edit?ts=5a79d2fd#gid=0"> PT / CLs / DL </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1vWEz3xsbWCoVAF44S9rTAZXMQKRfAi7A49c-QFxJA1g/edit?ts=5a79e18d#gid=0"> CL </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/1tshqCJ1P7Bba46DeEkI8R3PeUqC25nuJ2oNtjy_TCec/edit#gid=1977133567"> Weekly Reports </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/u/1/d/1jegJ8tzV45X7U0jAdHurdhE8rWrO8891h23fB-x1NLw/htmlview?sle=true#"> Phone List </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/d/18cyiVz9Ya-oqtsL-36OS8AWVGU5fNlNE-MFFBt9dEUI/edit?ts=5a56834c#gid=0"> Carriers </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/1je2O4kPEP3ZuJv0cTFY53BPJLbZXZlxp"> DATABASE </a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/folders/0BwZYC9bOkSa5S2taNmNkVUJXX3M"> TOOLS <i class="itnav"> Backup</i> </a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Content ============================================================================================================================================= -->
|
|
||||||
|
|
||||||
<div id="wrapper">
|
|
||||||
<img src="image/logo/CL-120p.png" height="74" class="one" title="Carolina Logistic, Inc">
|
|
||||||
<img src="image/logo/CLs-120p.png" height="60" class="two" title="Carolina Logistics, Inc">
|
|
||||||
<img src="image/logo/CT-120p.png" height="74" class="three" title="Carolina Transportation, Inc">
|
|
||||||
<img src="image/logo/DE-120p.png" height="67" class="four" title="Delta Express, Inc">
|
|
||||||
<img src="image/logo/DES-120p.png" height="72" class="five" title="Delta Express Services, Inc">
|
|
||||||
<img src="image/logo/DLs-120p.png" height="74" class="six" title="Delta Logistics, Inc">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<div id="background"> </div>
|
|
||||||
<div id="aside">
|
|
||||||
<div class="button">
|
|
||||||
<a href="user.html"> User's Link Board </a>
|
|
||||||
</div>
|
|
||||||
<h4> Recent News & Updates </h4>
|
|
||||||
<ol>
|
|
||||||
<li> <strong> Truck Selection changed in EFS Card Monitoring: no company specification necessary</strong> </li>
|
|
||||||
<li> <strong> Changed quantity of arguments in EFS Card Monitoring: from 4 to 18</strong> </li>
|
|
||||||
<li> <strong> Added RENAME button in WORKSHEET to enforce Rename Function in case AutoRename fails</strong> </li>
|
|
||||||
<li> <strong> Added Hyperlink in Filter tab of URL Collector Spreadsheet</strong> </li>
|
|
||||||
<li> <strong> Truck Selection changed in WORKSHEET: no company specification necessary</strong> </li>
|
|
||||||
<li> <strong> New update in WORKSHEET: new student's and trainer's rates after Jan 18</strong> </li>
|
|
||||||
<li> <strong> New update in WORKSHEET: checks when URLs are not pasted to Weekly Spreadsheet</strong> </li>
|
|
||||||
<li> <strong> New update in WORKSHEET: highlights unfinished expense</strong> </li>
|
|
||||||
<li> <strong> Removed RENAME button from WORKSHEET</strong> </li>
|
|
||||||
<li> <strong> Removed manual confirmation from WORKSHEET</strong> </li>
|
|
||||||
</ol>
|
|
||||||
<footer> Jan 29, 2018 </footer>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
481
rpm/linkboard.html
Normal file
@@ -0,0 +1,481 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta name="author" content="VK Services, LLC">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
|
||||||
|
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
||||||
|
<meta http-equiv="refresh" content="720">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="icon" type="image/x-icon" href="../img/icons/linkboard.ico">
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../app/stylesheet.css">
|
||||||
|
|
||||||
|
<title>RPM LinkBoard</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Header -->
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h2>RPM LINKBOARD</h2>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- Navigation: Top -->
|
||||||
|
|
||||||
|
<nav id="top">
|
||||||
|
<ul class="sub1">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://www.tch.com/security/logon.jsp"
|
||||||
|
>EFS</a>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://onedrive.live.com/?id=root&cid=7CDFEFDDB08A7009">
|
||||||
|
OneDrive</a>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://drive.google.com/drive/my-drive">
|
||||||
|
G-Drive</a>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://mail.google.com/mail/u/0/#inbox">
|
||||||
|
Gmail <em>Prim</em></a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://mail.google.com/mail/u/1/#inbox">
|
||||||
|
Gmail <em>Sec</em></a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://mail.google.com/mail/u/2/#inbox">
|
||||||
|
Gmail <em>Ter</em></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://hangouts.google.com/">
|
||||||
|
Hangouts <em>Prim</em></a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://hangouts.google.com/?pageId=none&authuser=1">
|
||||||
|
Hangouts <em>Sec</em></a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://hangouts.google.com/?pageId=none&authuser=2">
|
||||||
|
Hangouts <em>Ter</em></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://www.google.com/maps/@35.5710764,-82.5803167,12z">
|
||||||
|
G-Maps</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="dropdown"
|
||||||
|
href="#">
|
||||||
|
Tracking ▾</a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://track.rpmdispatch.com/v2/#!/login">
|
||||||
|
<em>New</em></a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://track.rpmdispatch.com/user/login#!/login">
|
||||||
|
<em>Old</em></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a class="dropdown"
|
||||||
|
href="#">
|
||||||
|
RPM ▾</a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="http://rpmcarolina.com/default.aspx">
|
||||||
|
CL</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="http://www.rpmowners.com/default.aspx">
|
||||||
|
CT</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="http://dispatchdelta.com/default.aspx">
|
||||||
|
DE</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a class="dropdown"
|
||||||
|
href="#">
|
||||||
|
+ New ▾</a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drive.google.com/drive/folders/1GuP0ad8znZxIZ34fzsqW000x7SMYFovH">
|
||||||
|
Week</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drive.google.com/drive/folders/10GJhehRuVkQsMlXS3NEV5ymEV74bgVYo">
|
||||||
|
Month</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drive.google.com/drive/folders/1S01wzvFY7Qb2AWeJDa5iB0L5Gdydjqh6">
|
||||||
|
Quarter</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a class="dropdown"
|
||||||
|
href="#">
|
||||||
|
Database ▾</a>
|
||||||
|
<ul class="sub2 right">
|
||||||
|
<li><a target="_blank" class="bl e"
|
||||||
|
href="#">
|
||||||
|
Fleet ▸</a>
|
||||||
|
<ul class="sub3 left">
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=709800642">
|
||||||
|
Companies</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=1647351910">
|
||||||
|
Units</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="bl e"
|
||||||
|
href="#">
|
||||||
|
People ▸</a>
|
||||||
|
<ul class="sub4 left">
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=2023496076">
|
||||||
|
Contractors</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1W_uZrNoAIvL3HoWrdfbfGAyNC1gSiqqEvN_JV3gS9Eg/edit#gid=1909787109">
|
||||||
|
Employees</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a target="_blank" class="bl e"
|
||||||
|
href="#">
|
||||||
|
Rates ▸</a>
|
||||||
|
<ul class="sub5 left">
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=766944046">
|
||||||
|
Basic</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=643630212">
|
||||||
|
Canada</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=702297004">
|
||||||
|
Regular Stops</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=1091142582">
|
||||||
|
Extra Stops</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=1270985435">
|
||||||
|
Towing</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=2102185617">
|
||||||
|
Bonuses</a></li>
|
||||||
|
<li><a target="_blank" class="h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1h-PLcbXzbKPtgrGN6cMFit6ML6hVzXrxec48ekCpsVE/edit#gid=916575852">
|
||||||
|
Charges <span>&</span> Company Reimbursement</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a class="dropdown"
|
||||||
|
href="#">
|
||||||
|
Other <span>&</span> Misc ▾</a>
|
||||||
|
<ul class="sub2">
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drivershr.com/hrm/login.php">
|
||||||
|
HRM</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/19koCtNrSbUujxfcZfqA5ZCHCvkPCvgw7-lUaK0gBQNU/edit?ts=5a79d31c#gid=0">
|
||||||
|
Global Board 1</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1lWaqBNQXaqhoQXOUGn2mjFpzjqm7B1JHjuSzGOcJgSg/edit?ts=5a79d2fd#gid=0">
|
||||||
|
Global Board 2</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1vWEz3xsbWCoVAF44S9rTAZXMQKRfAi7A49c-QFxJA1g/edit?ts=5a79e18d#gid=0">
|
||||||
|
Global Board 3</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/18cyiVz9Ya-oqtsL-36OS8AWVGU5fNlNE-MFFBt9dEUI/edit?ts=5a56834c#gid=0">
|
||||||
|
Carriers</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1qc17LJIBoFAMPf0PZf8kn5zYghyV8GzHeIKVU0t3WTo/edit#gid=0">
|
||||||
|
EFS Accounts</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/19tBRKV_SZK3Wg4b5dabtIoTapz5iO4n0GN0K3eovWMc/edit#gid=1990489309">
|
||||||
|
Towing <em>Input</em></a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drive.google.com/drive/folders/1je2O4kPEP3ZuJv0cTFY53BPJLbZXZlxp">
|
||||||
|
Database</a></li>
|
||||||
|
<li><a target="_blank" class="bl h"
|
||||||
|
href="https://drive.google.com/drive/folders/0BwZYC9bOkSa5S2taNmNkVUJXX3M">
|
||||||
|
Tools <em>Backup</em></a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- Navigation: Favs -->
|
||||||
|
|
||||||
|
<fieldset class="favs">
|
||||||
|
<legend>URL Collector / Payroll Hyperlinks</legend>
|
||||||
|
<table class="urls">
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Feb 11 — Feb 17
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1tExit8434s9LsGaZSuKBpvJmy4lXZpszV-BMcv4GNRA/edit#gid=914973738">
|
||||||
|
URL Collector</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1tExit8434s9LsGaZSuKBpvJmy4lXZpszV-BMcv4GNRA/edit#gid=978213208">
|
||||||
|
Payroll Hyperlinks</a>
|
||||||
|
</td>
|
||||||
|
<td rowspan="2" class="rsp"><br />
|
||||||
|
▾ History
|
||||||
|
<ul>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1KOkNhPxqqfn4a0AG2rk1aG5-ag711b5nPg6byKwbZtA/edit#gid=1250765514">
|
||||||
|
Jan 28 — Feb 3</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1l2UIAQl37sXLmP94VzuHNs3TJK97XIIyHHNEcuHvCFQ/edit#gid=1250765514">
|
||||||
|
Jan 21 — Jan 27</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1MVaFa-DaABTjKsXgF085o56tHfR6UYPjXyxexKgR460/edit#gid=1250765514">
|
||||||
|
Jan 14 — Jan 20</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1_tfsoL4JQ91wGtafc1ENRiTx2NovxFNyIBOL8H0Gw7s/edit#gid=1250765514">
|
||||||
|
Jan 7 — Jan 13</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1uetpiUWxKk20prlCmAq-GJeMoLtjwuBPU2Ocjd92no0/edit#gid=1250765514">
|
||||||
|
Dec 31 — Jan 6</a>
|
||||||
|
</li>
|
||||||
|
<li><a class="h" target="_blank"
|
||||||
|
href="https://drive.google.com/drive/folders/1MfNPealueJQJKTeV_J9iu9vCQr6qGPn1">
|
||||||
|
<span>... Entire History</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Feb 4 — Feb 10
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/148ayoJHZ-X44vsSlguLMTQQXx28WBn_Eiy-KXFGFxo4/edit#gid=914973738">
|
||||||
|
URL Collector</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/148ayoJHZ-X44vsSlguLMTQQXx28WBn_Eiy-KXFGFxo4/edit#gid=978213208">
|
||||||
|
Payroll Hyperlinks</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="favs">
|
||||||
|
<legend>EFS Card & Money Code Monitoring</legend>
|
||||||
|
<table class="monit">
|
||||||
|
<tr>
|
||||||
|
<th>CAROLINA LOGISTIC, INC <span>708305151783320</span></th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/14t_uAKnvPUrTLuxFpZ6WoxTucgv1rwnfbeN_nx_Fb5g/edit#gid=1995296890">
|
||||||
|
January <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/14t_uAKnvPUrTLuxFpZ6WoxTucgv1rwnfbeN_nx_Fb5g/edit#gid=2117669368">
|
||||||
|
January <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1tQeT4htr7202tHdu1t1UH_X6kSJZLuOf7grm3OT_zI4/edit#gid=1995296890">
|
||||||
|
February <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1tQeT4htr7202tHdu1t1UH_X6kSJZLuOf7grm3OT_zI4/edit#gid=2117669368">
|
||||||
|
February <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1EmhcXGFYyvx81ZHYvaY5b-RNX31cMXqKo4a8xrJ9eyc/edit#gid=686342087">
|
||||||
|
Quarter I</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="#">
|
||||||
|
</a>Quarter II
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>CAROLINA TRANSPORTATION, INC <span>70830515178290</span></th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1quIX_kbbZReFjl704JDQmV_PPrWcjydc3l4eupexm7E/edit#gid=1995296890">
|
||||||
|
January <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1quIX_kbbZReFjl704JDQmV_PPrWcjydc3l4eupexm7E/edit#gid=2117669368">
|
||||||
|
January <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1sQ_E_qLeIZ8wdzF7-5LCTnjGAS2tXYOId6yU0H1Gj_c/edit#gid=1995296890">
|
||||||
|
February <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1sQ_E_qLeIZ8wdzF7-5LCTnjGAS2tXYOId6yU0H1Gj_c/edit#gid=2117669368">
|
||||||
|
February <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>DELTA EXPRESS, INC <span>70830515177576</span></th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1gqISZZm7IyOVYcJZ1Iy5_MdpsMVZdWI00PFdvHfQVB8/edit#gid=1995296890">
|
||||||
|
January <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1gqISZZm7IyOVYcJZ1Iy5_MdpsMVZdWI00PFdvHfQVB8/edit#gid=2117669368">
|
||||||
|
January <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1gIDbJJ6TEeLX2lO52O94kjHtjdV7VX6Qi-nJDoZbwIk/edit#gid=1995296890">
|
||||||
|
February <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1gIDbJJ6TEeLX2lO52O94kjHtjdV7VX6Qi-nJDoZbwIk/edit#gid=2117669368">
|
||||||
|
February <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- Add Row above
|
||||||
|
<tr>
|
||||||
|
<th>company <span>account</span></th>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="#">
|
||||||
|
month <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="#">
|
||||||
|
month <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="#">
|
||||||
|
month <span>User 1</span></a>
|
||||||
|
<br />
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="#">
|
||||||
|
month <span>User 2</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
-->
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="favs">
|
||||||
|
<legend>Shortcuts</legend>
|
||||||
|
<table class="shcuts1">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://drive.google.com/drive/folders/1HLWwjjp85TrvblKI65Z0PkI8ze4cSWMW">
|
||||||
|
+ Add WORKSHEET</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fjF4VVpZZzNhUzJsMk9XZlQxN09DRkhVZVcwcnFUUGJkN0VKRWJhNUh1V0U">
|
||||||
|
Scans</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fmJYa21WcTMxUDBxakZtXzl3N0o5SGpvUlRxWFVrZmZXblVhdFl6NW42R2c">
|
||||||
|
Expense</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1vInI27Gj3mI0dz--03pbZt4TtuGdF_DZPNPVR5Vc3jM/edit#gid=0">
|
||||||
|
Document Submission</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1wODl9QHnhej3ySdV110MpQvL0tNIr9IQbLqlDXOvTkM/edit#gid=0">
|
||||||
|
Payroll List</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1MOB1zwdD4aHmtpSrcNg8F2J9Ngx8k9sJRNpvZ74nbPQ/edit#gid=0">
|
||||||
|
Students</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<table class="shcuts2">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1b2g3BARa4ibqdqtTj5_IQoBSI8hp6A4R5A3bSbrfA58/edit#gid=2008487089">
|
||||||
|
Reporting Drivers <span>February</span></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1QOqM8xouEbOFxn_Ktenx_LGB2AzBEnfFrxOisSKzSkg/edit?ts=567805bc#gid=0">
|
||||||
|
Truck/Trailer Breakdown</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1SgC9L_M-5FNgvXV5hQJJQ4AggehmPo9ipB5Z1aHK_V0/edit?ts=5a4beef8#gid=0">
|
||||||
|
DEF Tracker</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1FsrNZ2zATp2nF8ctbkhOf8fUllA4-C8370-UkNnRrm0/edit?pli=1#gid=0">
|
||||||
|
Rate List</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1XIJ5TR1zuEODW8CRWTSd2QNNlyYexa5OwGLoVvnMmnk/edit#gid=1229815017">
|
||||||
|
Towing</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/u/1/d/1jegJ8tzV45X7U0jAdHurdhE8rWrO8891h23fB-x1NLw/htmlview?sle=true#">
|
||||||
|
Phone List</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="favs">
|
||||||
|
<legend>Additional Tools (West Coast Only)</legend>
|
||||||
|
<table class="tools">
|
||||||
|
<tr>
|
||||||
|
<td><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1AoyXGtUIOiGq9siawF-WnBP4XgVgur-wWRgyilM0j2A/edit?ts=5a673d3b#gid=1558692306">
|
||||||
|
Detention Board</a></td>
|
||||||
|
<td><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/173n-J5qtZKtqg4MHOZ3oUFgJo9ZmVzjFs2Zxn8Nbdug/edit?ts=5a673d8d#gid=90">
|
||||||
|
West Coast Board</a></td>
|
||||||
|
<td><a class="h" target="_blank"
|
||||||
|
href="https://docs.google.com/spreadsheets/d/1y82rNeg66Hh9DIduNXj0fTeIErlJn7B0Xe4-s59RHq4/edit?ts=5a673d99#gid=1275085378">
|
||||||
|
West Coast AVG Rates</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
@import url('https://fonts.googleapis.com/css?family=Roboto:700');
|
|
||||||
@import url('https://fonts.googleapis.com/css?family=Hammersmith+One');
|
|
||||||
|
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
@@ -1,222 +0,0 @@
|
|||||||
* {
|
|
||||||
margin: 0px;
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: seashell;
|
|
||||||
font-family: Helvetica, san-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
margin: 0px auto;
|
|
||||||
width: 1750px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#header {
|
|
||||||
background-color: black;
|
|
||||||
margin-top: 24px;
|
|
||||||
padding: 0px 16px;
|
|
||||||
height: 48px;
|
|
||||||
border-bottom-left-radius: 16px;
|
|
||||||
border-bottom-right-radius: 16px;
|
|
||||||
position: relative;
|
|
||||||
z-index:2;
|
|
||||||
opacity: 0.92;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu, ul.sub1, ul.sub2, ul.sub3 {
|
|
||||||
list-style-type: none;
|
|
||||||
font-size: 18px;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
i.itnav {
|
|
||||||
font-size: 72%;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu li {
|
|
||||||
width: 250px;
|
|
||||||
text-align: center;
|
|
||||||
position: relative;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu a {
|
|
||||||
text-decoration: none;
|
|
||||||
display: block;
|
|
||||||
width: 250px;
|
|
||||||
height: 48px;
|
|
||||||
line-height: 48px;
|
|
||||||
background-color: black;
|
|
||||||
color: lightgray;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu li:hover > a {
|
|
||||||
background-color: gray;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu li:hover a.e:hover {
|
|
||||||
background-color: lightgray;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu li:hover a.h:hover {
|
|
||||||
background-color: green;
|
|
||||||
color: yellow;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu ul.sub1 {
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
top: 40px;
|
|
||||||
left: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu ul.sub2 {
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
left: 250px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu ul.sub3 {
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
right: 250px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu li:hover .sub1 {
|
|
||||||
display: block;
|
|
||||||
border-top: 3.2px solid darkgray;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul#navmenu .sub1 li:hover .sub2,
|
|
||||||
ul#navmenu .sub1 li:hover .sub3 {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#wrapper, div#aside {
|
|
||||||
position: relative;
|
|
||||||
z-index: 1;
|
|
||||||
background-color: lightgray;
|
|
||||||
border: 0.5px 2px 2px 0.5px solid lightgray;
|
|
||||||
border-radius: 9px;
|
|
||||||
box-shadow: inset -1.2px -1.2px 12px black;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#wrapper {
|
|
||||||
top: 24px;
|
|
||||||
padding: 32px 0px 32px 24px;
|
|
||||||
margin-bottom: 48px;
|
|
||||||
width: 1720px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#aside {
|
|
||||||
padding: 32px;
|
|
||||||
width: 736px;
|
|
||||||
height: 540px;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
|
||||||
letter-spacing: 0.2px;
|
|
||||||
font-style: oblique;
|
|
||||||
text-indent: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
margin: 16px 24px;
|
|
||||||
font-size: 11px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ol li {
|
|
||||||
line-height: 24px;
|
|
||||||
color: darkred;
|
|
||||||
}
|
|
||||||
|
|
||||||
li strong {
|
|
||||||
font-size: 120%;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
color: darkblue;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#background {
|
|
||||||
margin: 0;
|
|
||||||
width: 900px;
|
|
||||||
height: 574px;
|
|
||||||
position: relative;
|
|
||||||
float: left;
|
|
||||||
background-image: url("../../image/background.png");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
img.one, img.two, img.three, img.four, img.five {
|
|
||||||
margin-right: 78px;
|
|
||||||
}
|
|
||||||
|
|
||||||
img.one {
|
|
||||||
margin-left: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
img.six {
|
|
||||||
margin-right: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
margin-top: 12px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-top: 16px;
|
|
||||||
font-family: Arial;
|
|
||||||
font-size: 18px;
|
|
||||||
letter-spacing: 0.7px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: darkgreen;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
text-align: right;
|
|
||||||
font-size: 84%;
|
|
||||||
color: brown;
|
|
||||||
letter-spacing: 0.4px;
|
|
||||||
font-style: oblique;
|
|
||||||
}
|
|
||||||
|
|
||||||
#aside div.button {
|
|
||||||
width: 164px;
|
|
||||||
height: 30px;
|
|
||||||
line-height: 30px;
|
|
||||||
text-align: center;
|
|
||||||
background-color: darkblue;
|
|
||||||
border-radius: 7px;
|
|
||||||
margin-top: 8px;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
border: 1px solid darkblue;
|
|
||||||
}
|
|
||||||
|
|
||||||
#aside div.button a {
|
|
||||||
display: block;
|
|
||||||
width: inherit;
|
|
||||||
height: inherit;
|
|
||||||
text-decoration: none;
|
|
||||||
color: lightgray;
|
|
||||||
}
|
|
||||||
|
|
||||||
#aside div.button:hover {
|
|
||||||
background-color: green;
|
|
||||||
border: 1px solid lightgreen;
|
|
||||||
}
|
|
||||||
|
|
||||||
#aside div.button:hover a {
|
|
||||||
color: yellow;
|
|
||||||
}
|
|
||||||
|
|
||||||
#aside div.button:active {
|
|
||||||
font-size: 94%;
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
@import url('../!reset.css');
|
|
||||||
|
|
||||||
* { background-color: aliceblue; }
|
|
||||||
|
|
||||||
|
|
||||||
/* BACKGROUND */
|
|
||||||
/* ======================== */
|
|
||||||
|
|
||||||
div#navbar,
|
|
||||||
.sub > li,
|
|
||||||
.nav a { background-color: black; }
|
|
||||||
|
|
||||||
fieldset,
|
|
||||||
th, th span,
|
|
||||||
td, td span,
|
|
||||||
td a, td a span,
|
|
||||||
td.unq div,
|
|
||||||
td.unq ul li,
|
|
||||||
td.unq ul li strong,
|
|
||||||
td.unq ul li em,
|
|
||||||
td.unq ul li a { background-color: azure; }
|
|
||||||
|
|
||||||
legend { background-color: darkblue; }
|
|
||||||
|
|
||||||
|
|
||||||
/* COLOR */
|
|
||||||
/* ======================== */
|
|
||||||
|
|
||||||
h3 { color: darkgreen; }
|
|
||||||
|
|
||||||
p { color: darkred; }
|
|
||||||
|
|
||||||
.nav a.h,
|
|
||||||
.nav a.e { color: lightgray; }
|
|
||||||
.nav a.h:hover { color: yellow; }
|
|
||||||
|
|
||||||
legend { color: lightgray; }
|
|
||||||
|
|
||||||
td { color: #ff8080; }
|
|
||||||
|
|
||||||
td a.h,
|
|
||||||
td a.h:visited { color: darkblue; }
|
|
||||||
td a.h:hover { color: darkgreen; }
|
|
||||||
|
|
||||||
td.unq a.e { color: darkgray; }
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
h3 {
|
|
||||||
padding-bottom: 2px;
|
|
||||||
border-bottom: 2px solid darkgreen;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav > li > a { border-right: 0.5px solid #202020; }
|
|
||||||
|
|
||||||
#rpm a { border-right: none; }
|
|
||||||
|
|
||||||
.sub > li > a { border-top: 0.5px solid #202020; }
|
|
||||||
|
|
||||||
fieldset {
|
|
||||||
border: 1px solid darkblue;
|
|
||||||
border-radius: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
|
|
||||||
legend {
|
|
||||||
border-radius: 16px 8px 16px 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
th, td { border-bottom: 1.5px solid lightblue; }
|
|
||||||
|
|
||||||
td.unq { border: none; }
|
|
||||||
|
|
||||||
td.unq ul li,
|
|
||||||
td.unq ul li a { border-bottom: 1px solid lightblue; }
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
@import url('https://fonts.googleapis.com/css?family=Roboto:700');
|
|
||||||
@import url('https://fonts.googleapis.com/css?family=Hammersmith+One');
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
letter-spacing: 0.377px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-family: 'Roboto', sans-serif;
|
|
||||||
letter-spacing: 1.7px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 77%;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
a { text-decoration: none; }
|
|
||||||
td a.h:hover { text-decoration: underline; }
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 72%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sub a { text-align: left; }
|
|
||||||
|
|
||||||
legend {
|
|
||||||
font-family: 'Hammersmith One', sans-serif;
|
|
||||||
font-size: 90%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
font-size: 105%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.unq div a { font-size: 84%; }
|
|
||||||
|
|
||||||
td.unq ul li,
|
|
||||||
td.unq ul li a {
|
|
||||||
font-size: 13.75px;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset#monitoring table tr th { text-align: left; }
|
|
||||||
|
|
||||||
fieldset#monitoring table tr td { text-align: right; }
|
|
||||||
|
|
||||||
fieldset table {
|
|
||||||
font-size: 92%;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
@import url('background_text-color.css');
|
|
||||||
@import url('border.css');
|
|
||||||
@import url('font_text.css');
|
|
||||||
|
|
||||||
/* CURSOR */
|
|
||||||
/* ======================== */
|
|
||||||
|
|
||||||
h3, p, th, tr, legend { cursor: default; }
|
|
||||||
|
|
||||||
/* MARGIN & PADDING */
|
|
||||||
/* ======================== */
|
|
||||||
|
|
||||||
body { margin: 0 auto; }
|
|
||||||
|
|
||||||
div { margin-top: 16px; }
|
|
||||||
|
|
||||||
div#user {
|
|
||||||
margin-top: 24px;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 { margin: 7px; }
|
|
||||||
|
|
||||||
p { margin-bottom: 7px; }
|
|
||||||
|
|
||||||
.nav a { padding: 7px 14px; }
|
|
||||||
|
|
||||||
fieldset {
|
|
||||||
padding: 24px 32px 32px;
|
|
||||||
margin-top: 27px;
|
|
||||||
}
|
|
||||||
|
|
||||||
legend { padding: 4px 32px; }
|
|
||||||
|
|
||||||
th, td { padding: 6.2px 12px; }
|
|
||||||
|
|
||||||
td.unq ul li,
|
|
||||||
td.unq ul li a {
|
|
||||||
margin-top: 6.4px;
|
|
||||||
padding: 6.4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.add { margin-top: 7px; }
|
|
||||||
|
|
||||||
/* LIST STYLE */
|
|
||||||
/* ======================== */
|
|
||||||
|
|
||||||
ul { list-style-type: none; }
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
body { width: 960px; }
|
|
||||||
|
|
||||||
.nav > li {
|
|
||||||
position: relative;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sub > li { position: relative; }
|
|
||||||
|
|
||||||
.nav a {
|
|
||||||
display: block;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sub { display: none; }
|
|
||||||
|
|
||||||
div#navbar {
|
|
||||||
width: 960px;
|
|
||||||
height: 34px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset#urls,
|
|
||||||
fieldset#monitoring,
|
|
||||||
fieldset#shortcuts,
|
|
||||||
fieldset#tools {
|
|
||||||
position: relative;
|
|
||||||
top: 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset table { width: 100%; }
|
|
||||||
|
|
||||||
td.unq div ul {
|
|
||||||
position: absolute;
|
|
||||||
width: 144px;;
|
|
||||||
z-index: 4;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.unq div:hover ul { display: block; }
|
|
||||||
|
|
||||||
ul.nav li:hover ul.sub { display: block; }
|
|
||||||
|
|
||||||
td a.e { visibility: hidden; }
|
|
||||||
|
|
||||||
td.unq a.e { visibility: visible; }
|
|
||||||
250
user.html
@@ -5,257 +5,13 @@
|
|||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="author" content="VK Services">
|
<meta name="author" content="VK Services">
|
||||||
|
<meta http-equiv="refresh" content="2; url=rpm/linkboard.html" />
|
||||||
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
||||||
<meta http-equiv="refresh" content="720">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
|
|
||||||
<title>Expense/Payroll Linkboard</title>
|
<title>... redirecting</title>
|
||||||
|
|
||||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
||||||
<link rel="icon" type="image/x-icon" href="image/icon/home.ico">
|
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="style/user/general.css">
|
|
||||||
<link rel="stylesheet" type="text/css" href="style/user/parameter_position.css">
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body style="color: red; font-size: 240%;"> The pages has moved... </body>
|
||||||
|
|
||||||
<div id="user">
|
|
||||||
<h3>LINKBOARD</h3>
|
|
||||||
<p>* If you are using more than one Google account in the same browser,
|
|
||||||
the links below will direct you to your primary account</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar">
|
|
||||||
<ul class="nav">
|
|
||||||
<li><a class="h" href="index.html">Home</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://www.tch.com/security/logon.jsp">EFS</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://onedrive.live.com/?id=root&cid=7CDFEFDDB08A7009">OneDrive</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://drive.google.com/drive/my-drive">Drive</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://docs.google.com/spreadsheets/u/0/?tgif=d">Sheets</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://mail.google.com/mail/u/0/#inbox">Mail</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://hangouts.google.com/">Hangouts</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://www.google.com/maps/@35.5710764,-82.5803167,12z">Maps</a></li>
|
|
||||||
<li><a class="h" target="_blank" href="https://track.rpmdispatch.com/v2/#!/login">Tracking</a></li>
|
|
||||||
<li id="rpm"><a class="e" href="#">▾ RPM</a>
|
|
||||||
<ul class="sub">
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="http://rpmcarolina.com/default.aspx">Carolina Logistic, Inc</a></li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="http://www.rpmowners.com/default.aspx">Carolina Transportation, Inc</a></li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="http://dispatchdelta.com/default.aspx">Delta Express, Inc</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<fieldset id="urls">
|
|
||||||
<legend>URL Collector / Payroll Hyperlinks</legend>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Feb 11 — Feb 17</th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1tExit8434s9LsGaZSuKBpvJmy4lXZpszV-BMcv4GNRA/edit#gid=914973738">URL Collector</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1tExit8434s9LsGaZSuKBpvJmy4lXZpszV-BMcv4GNRA/edit#gid=978213208">Payroll Hyperlinks</a></td>
|
|
||||||
<td rowspan="2" class="unq"><div><a class="e" href="#">History ▾</a>
|
|
||||||
<ul>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1KOkNhPxqqfn4a0AG2rk1aG5-ag711b5nPg6byKwbZtA/edit#gid=1250765514">
|
|
||||||
Jan 28 — Feb 3</a>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1l2UIAQl37sXLmP94VzuHNs3TJK97XIIyHHNEcuHvCFQ/edit#gid=1250765514">
|
|
||||||
Jan 21 — Jan 27</a>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1MVaFa-DaABTjKsXgF085o56tHfR6UYPjXyxexKgR460/edit#gid=1250765514">
|
|
||||||
Jan 14 — Jan 20</a>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1_tfsoL4JQ91wGtafc1ENRiTx2NovxFNyIBOL8H0Gw7s/edit#gid=1250765514">
|
|
||||||
Jan 7 — Jan 13</a>
|
|
||||||
</li>
|
|
||||||
<li><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1uetpiUWxKk20prlCmAq-GJeMoLtjwuBPU2Ocjd92no0/edit#gid=1250765514">
|
|
||||||
Dec 31 — Jan 6</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<strong style="color: black; font-size: 94%;">Expanded History</strong><br />
|
|
||||||
<em style="font-size: 87%; color: gray;">for earlier dates...</em></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Feb 4 — Feb 10</th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/148ayoJHZ-X44vsSlguLMTQQXx28WBn_Eiy-KXFGFxo4/edit#gid=914973738">URL Collector</a>
|
|
||||||
</td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/148ayoJHZ-X44vsSlguLMTQQXx28WBn_Eiy-KXFGFxo4/edit#gid=978213208">Payroll Hyperlinks</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<fieldset id="monitoring">
|
|
||||||
<legend>EFS Card & Money Code Monitoring</legend>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>CAROLINA LOGISTIC, INC <span> 708305151783320</span></th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/14t_uAKnvPUrTLuxFpZ6WoxTucgv1rwnfbeN_nx_Fb5g/edit#gid=1995296890">
|
|
||||||
January <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/14t_uAKnvPUrTLuxFpZ6WoxTucgv1rwnfbeN_nx_Fb5g/edit#gid=2117669368">
|
|
||||||
January <span>User 2</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1tQeT4htr7202tHdu1t1UH_X6kSJZLuOf7grm3OT_zI4/edit#gid=1995296890">
|
|
||||||
February <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1tQeT4htr7202tHdu1t1UH_X6kSJZLuOf7grm3OT_zI4/edit#gid=2117669368">
|
|
||||||
February <span>User 2</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1EmhcXGFYyvx81ZHYvaY5b-RNX31cMXqKo4a8xrJ9eyc/edit#gid=686342087">
|
|
||||||
Quarter I</a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
</a>Quarter II</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>CAROLINA TRANSPORTATION, INC <span> 70830515178290</span></th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1quIX_kbbZReFjl704JDQmV_PPrWcjydc3l4eupexm7E/edit#gid=1995296890">
|
|
||||||
January <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1quIX_kbbZReFjl704JDQmV_PPrWcjydc3l4eupexm7E/edit#gid=2117669368">
|
|
||||||
January <span>User 2</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1sQ_E_qLeIZ8wdzF7-5LCTnjGAS2tXYOId6yU0H1Gj_c/edit#gid=1995296890">
|
|
||||||
February <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1sQ_E_qLeIZ8wdzF7-5LCTnjGAS2tXYOId6yU0H1Gj_c/edit#gid=2117669368">
|
|
||||||
February <span>User 2</span></a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
Quarter I</a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
Quarter II</a></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>DELTA EXPRESS, INC <span> 70830515177576</span></th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1gqISZZm7IyOVYcJZ1Iy5_MdpsMVZdWI00PFdvHfQVB8/edit#gid=1995296890">
|
|
||||||
January <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1gqISZZm7IyOVYcJZ1Iy5_MdpsMVZdWI00PFdvHfQVB8/edit#gid=2117669368">
|
|
||||||
January <span>User 2</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1gIDbJJ6TEeLX2lO52O94kjHtjdV7VX6Qi-nJDoZbwIk/edit#gid=1995296890">
|
|
||||||
February <span>User 1</span></a><br />
|
|
||||||
<a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1gIDbJJ6TEeLX2lO52O94kjHtjdV7VX6Qi-nJDoZbwIk/edit#gid=2117669368">
|
|
||||||
February <span>User 2</span></a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
Quarter I</a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
Quarter II</a></td>
|
|
||||||
</tr>
|
|
||||||
<!--
|
|
||||||
<tr>
|
|
||||||
<th>[company] <span> [account]</span></th>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="#">
|
|
||||||
[month 1] <span>User 1</span></a><br /><a class="h" target="_blank"
|
|
||||||
href="#">
|
|
||||||
[month 2] <span>User 2</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="#">
|
|
||||||
[month 1] <span>User 1</span></a><br /><a class="h" target="_blank"
|
|
||||||
href="#">
|
|
||||||
[month 2] <span>User 2</span></a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
[quarter 1]</a></td>
|
|
||||||
<td><a class="e"
|
|
||||||
href="#">
|
|
||||||
[quarter 2]</a></td>
|
|
||||||
</tr>
|
|
||||||
-->
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<fieldset id="shortcuts">
|
|
||||||
<legend>Shortcuts</legend>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://drive.google.com/drive/folders/1HLWwjjp85TrvblKI65Z0PkI8ze4cSWMW">
|
|
||||||
+ Add WORKSHEET</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fjF4VVpZZzNhUzJsMk9XZlQxN09DRkhVZVcwcnFUUGJkN0VKRWJhNUh1V0U">
|
|
||||||
Scans</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://drive.google.com/drive/u/0/folders/0BxIwWlTHHQp7fmJYa21WcTMxUDBxakZtXzl3N0o5SGpvUlRxWFVrZmZXblVhdFl6NW42R2c">
|
|
||||||
Expense</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1vInI27Gj3mI0dz--03pbZt4TtuGdF_DZPNPVR5Vc3jM/edit#gid=0">
|
|
||||||
Document Submission</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1wODl9QHnhej3ySdV110MpQvL0tNIr9IQbLqlDXOvTkM/edit#gid=0">
|
|
||||||
Payroll List</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1MOB1zwdD4aHmtpSrcNg8F2J9Ngx8k9sJRNpvZ74nbPQ/edit#gid=0">
|
|
||||||
Students</a></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<table class="add">
|
|
||||||
<tr>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1b2g3BARa4ibqdqtTj5_IQoBSI8hp6A4R5A3bSbrfA58/edit#gid=466754331">
|
|
||||||
Reporting Drivers <span>January</span></a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1QOqM8xouEbOFxn_Ktenx_LGB2AzBEnfFrxOisSKzSkg/edit?ts=567805bc#gid=0">
|
|
||||||
Truck/Trailer Breakdown</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1SgC9L_M-5FNgvXV5hQJJQ4AggehmPo9ipB5Z1aHK_V0/edit?ts=5a4beef8#gid=0">
|
|
||||||
DEF Tracker</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1FsrNZ2zATp2nF8ctbkhOf8fUllA4-C8370-UkNnRrm0/edit?pli=1#gid=0">
|
|
||||||
Rate List</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1XIJ5TR1zuEODW8CRWTSd2QNNlyYexa5OwGLoVvnMmnk/edit#gid=1229815017">
|
|
||||||
Towing</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/u/1/d/1jegJ8tzV45X7U0jAdHurdhE8rWrO8891h23fB-x1NLw/htmlview?sle=true#">
|
|
||||||
Phone List</a></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<fieldset id="tools">
|
|
||||||
<legend>Additional Tools (West Coast Only)</legend>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1AoyXGtUIOiGq9siawF-WnBP4XgVgur-wWRgyilM0j2A/edit?ts=5a673d3b#gid=1558692306">
|
|
||||||
Detention Board</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/173n-J5qtZKtqg4MHOZ3oUFgJo9ZmVzjFs2Zxn8Nbdug/edit?ts=5a673d8d#gid=90">
|
|
||||||
West Coast Board</a></td>
|
|
||||||
<td><a class="h" target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1y82rNeg66Hh9DIduNXj0fTeIErlJn7B0Xe4-s59RHq4/edit?ts=5a673d99#gid=1275085378">
|
|
||||||
West Coast AVG Rates</a></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
|
|
||||||
@@ -6,7 +5,7 @@
|
|||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="author" content="VK Services">
|
<meta name="author" content="VK Services">
|
||||||
<meta http-equiv="refresh" content="2; url=../user.html" />
|
<meta http-equiv="refresh" content="2; url=../rpm/linkboard.html" />
|
||||||
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
<meta http-equiv="Cache-Control" content="must-revalidate, no-store, no-cache">
|
||||||
|
|
||||||
<title>... redirecting</title>
|
<title>... redirecting</title>
|
||||||
|
|||||||