Created
May 10, 2023 00:25
-
-
Save andrewjcurrie/d44a80218525f7ecc02e87c4311d738b to your computer and use it in GitHub Desktop.
IPv4 Address Validator
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
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap'); | |
body, p, h1, h2, li, input { | |
font-family: 'Roboto', sans-serif; | |
} | |
h2 { | |
color: #FFF; | |
} | |
button:hover { | |
background-color: #000; | |
color: white; | |
} | |
button { | |
background-color: #FFF; | |
color: black; | |
font-size: 1em; | |
border: 2px solid; | |
} | |
.container { | |
margin: auto; | |
padding: 12px; | |
width: 40em; | |
background: #5882FA; | |
border-radius: 23px; | |
} | |
ul { | |
list-style-type: none; | |
} | |
input { | |
font-size: 20pt; | |
} | |
input:focus, textarea:focus { | |
background-color: #E0F8F1; | |
} | |
input submit { | |
font-size: 12pt; | |
} | |
.rq { | |
color: #FF0000; | |
font-size: 10pt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment