
/*
Starts=a[href^, Ends=a[href$, Anywhere=a[href*, PDF=a[href$=".pdf"]
*/

/* Link border */
#main-content a{
    border-right: 2px solid #E9AD60; /* light orange */
}

/* Internal Link */
#main-content a[href*="https://wedrawthelines.ca.gov"]{
    background-color: #f0f8fc; /* light blue */
}

/* External Link */
#main-content [href*="//"]:not([href*="wedrawthelines.ca.gov"]){
    background-color: #c9eeff; /* blue */
}

/* External Link - SharePoint */
#main-content a[href*="sharepoint"]{
    background-color: #ffe0a3 !important; /* light orange */    
}

/* External Link - AirTable */
#main-content a[href*="airtable.com"]{
    background-color: #f5d7fc !important; /* light purple */
}

/* External Link - CloudFront */
#main-content a[href*="cloudfront.net"]{
    background-color: #f9fcdc !important; /* light yellow */
}

/* External Link - NationBuilder */
#main-content a[href*="nationbuilder"]{
    background-color: #ffd1d4 !important; /* light red */
}

/* External Link - Google Drive */
#main-content a[href*="drive.google.com"]{
    background-color: #c7fab6 !important; /* light green */
}

/* External Link - Google Docs */
#main-content a[href*="docs.google.com"]{
    background-color: #b1fcc0 !important; /* light green */
}

/* Opens New Window */
#main-content a[target=_blank]:before {
  content: '\279A'; /* up right arrow */
}

/* PDF Link */
#main-content a[href$='.pdf']:after {
  content: '\1F4DD'; /* memo pencel paper */
}

/* OneDrive Link */
#main-content a[href*="OneDrive"]{
    background-color: #fac7a5 !important; /* light red-orange */
}

/* Videossc.com Link */
#main-content a[href*="videossc"]{
    background-color: #b7f1f7 !important; /* light teal */
}


/*

a[href]:not(:where(
  /* exclude hash only links */
  [href^="#"],
  /* exclude relative but not double slash only links */
  [href^="/"]:not([href^="//"]),
  /* domains to exclude */
  [href*="//wedrawthelines.ca.gov"],
  /* subdomains to exclude */
  [href*="//wedrawthelines.ca.gov"],
)):after {
  content: '↗️';
}

*/


