Styles Cleanup, added RFC 3021 note (/31 mask)

This commit is contained in:
Jason Costomiris 2018-07-10 12:41:13 -04:00
parent 7a83794c45
commit 0a5424f01d
2 changed files with 21 additions and 14 deletions

View File

@ -35,8 +35,9 @@
<p>Click below to split and join subnets.<br />
If you wish to save this subnetting for later, bookmark <a href="index.html" id="saveLink">this hyperlink</a>.</p>
<p>Click below to split and join subnets.</p>
<p>If you wish to save this subnetting for later, bookmark <a href="index.html" id="saveLink">this hyperlink</a>.</p>
<p>Confused about the /31 netmask? Read <a href="https://tools.ietf.org/html/rfc3021" target="_blank">RFC3021</a> to get some clarity.</p>
<hr />

View File

@ -1,6 +1,6 @@
h1 {
font-family: 'Lato', sans-serif;
font-size: 18pt;
font-size: 140%;
}
body {
@ -15,7 +15,6 @@ p {
hr {
border-bottom: 1px solid #fff;
border-top: 1px solid #8c8b8b;
size: 1;
}
.calc {
@ -26,17 +25,18 @@ hr {
.calc td {
border: 1px solid black;
padding: 5px;
}
.calc thead {
background-color: #eeeeee;
font-family: 'Lato', sans-serif;
font-size: 100%;
font-size: 120%;
font-weight: bold;
}
.disabledAction {
color: #dddddd;
color: red;
}
.maskSpan {
@ -94,14 +94,15 @@ hr {
}
input[type=button], input[type=submit], input[type=reset] {
border: none;
color: white;
cursor: pointer;
font-family: 'Lato', sans-serif;
font-weight: bold;
margin: 4px 2px;
padding: 8px 8px;
text-decoration: none;
border: none;
color: white;
cursor: pointer;
font-family: 'Lato', sans-serif;
font-size: 90%;
font-weight: bold;
margin: 4px 2px;
padding: 8px 8px;
text-decoration: none;
}
input[type=submit] {
@ -112,3 +113,8 @@ input[type=button], input[type=reset] {
background-color: red;
}
input[type=text] {
font-family: 'Source Code Pro', sans-serif;
font-size: 90%;
}