Increased font size, removed <p> from bgp each line break, css and js loaded async

master
Domeniko Gentner 4 years ago
parent 84283e86ea
commit fddfa9a15b
  1. 4
      css.css
  2. BIN
      favicon.ico
  3. BIN
      favicon.png
  4. 42
      index.html

@ -8,13 +8,11 @@
Green: #2ECC40 Green: #2ECC40
*/ */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');
body{ body{
font-family: 'DM Mono', monospace; font-family: 'DM Mono', monospace;
background-color: #1d1e22; background-color: #1d1e22;
color: white; color: white;
/*font-size: 1.1em;*/ font-size: 1.1em;
} }
h1, h2{ h1, h2{

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

@ -2,15 +2,29 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/raster2.css"> <meta name="cheatsheet for network administrators">
<link rel="stylesheet" href="/css.css">
<script src="tooltip.js"></script> <link rel="preload" href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap" as="style">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap" onload="this.media='all'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap"></noscript>
<link rel="preload" href="/raster2.css" as="style">
<link rel="stylesheet" href="/raster2.css" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="/raster2.css"></noscript>
<link rel="preload" href="/css.css" as="style">
<link rel="stylesheet" href="/css.css" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="/css.css"></noscript>
<script defer src="tooltip.js"></script>
<title>networking cheat sheet</title> <title>networking cheat sheet</title>
</head> </head>
<body> <body>
<r-grid columns="1" columns-l="1"> <r-grid columns="1" columns-l="1">
<r-cell span="row"> <r-cell span="row">
<a href="https://github.com/domeniko-gentner/network-cheatsheet"><img src="/github.png" alt="github logo"></a> <a href="https://github.com/domeniko-gentner/network-cheatsheet">
<img width="32" height="32" src="/github.png" alt="github logo">
</a>
<h1>networking cheat sheet</h1> <h1>networking cheat sheet</h1>
</r-cell> </r-cell>
</r-grid> </r-grid>
@ -333,16 +347,16 @@
<r-cell> <r-cell>
<r-grid columns="1" class="panel" id="bgp"> <r-grid columns="1" class="panel" id="bgp">
<h2>BGP Table path selection</h2> <h2>BGP Table path selection</h2>
<p>Prefer the highest local-preference value.</p> <p>Prefer the highest local-preference value.<br>
<p>Prefer the shortest AS-path length.</p> Prefer the shortest AS-path length.<br>
<p>Prefer the lowest origin value.</p> Prefer the lowest origin value.<br>
<p>Prefer the lowest MED value.</p> Prefer the lowest MED value.<br>
<p>Prefer routes learned from an EBGP peer over an IBGP peer.</p> Prefer routes learned from an EBGP peer over an IBGP peer.<br>
<p>Prefer best exit from AS.</p> Prefer best exit from AS.<br>
<p>For EBGP-received routes, prefer the current active route.</p> For EBGP-received routes, prefer the current active route.<br>
<p>Prefer routes from the peer with the lowest Router ID.</p> Prefer routes from the peer with the lowest Router ID.<br>
<p>Prefer paths with the shortest cluster length.</p> Prefer paths with the shortest cluster length.<br>
<p>Prefer routes from the peer with the lowest peer IP address.</p> Prefer routes from the peer with the lowest peer IP address.</p>
<p><a href="https://tools.ietf.org/html/rfc4271">source</a></p> <p><a href="https://tools.ietf.org/html/rfc4271">source</a></p>
</r-grid> </r-grid>
</r-cell> </r-cell>

Loading…
Cancel
Save