A Pen by Captain Anonymous on CodePen.
Created
November 28, 2021 16:20
-
-
Save JudahSan/fda97deaee56db5019d6f33679e83dae to your computer and use it in GitHub Desktop.
QKPJmW
This file contains hidden or 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
<header> | |
<h1>JSON and AJAX</h1> | |
<button id="btn">Fetch Info for 3 New Animals</button> | |
</header> | |
<div id="animal-info"></div> |
This file contains hidden or 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
html, body { | |
padding: 0; | |
margin: 0; | |
} | |
.hide-me { | |
visibility: hidden; | |
opacity: 0; | |
transform: scale(.75); | |
} | |
h1 { | |
margin-top: 0; | |
font-size: 2.4em; | |
font-weight: normal; | |
display: inline-block; | |
} | |
body { | |
font-family: Helvetica, sans-serif; | |
padding: 50px 10%; | |
} | |
button { | |
background-color: #046380; | |
color: #FFF; | |
border: none; | |
padding: 10px 15px; | |
font-size: 15px; | |
border-radius: 4px; | |
cursor: pointer; | |
outline: none; | |
box-shadow: 2px 2px 0 #034154; | |
margin-bottom: 10px; | |
margin-left: 18px; | |
transition: opacity .4s ease-out, transform .4s ease-out, visibility .4s ease-out; | |
position: relative; | |
top: -10px; | |
} | |
button:hover { | |
background-color: #034F66; | |
} | |
button:active { | |
background-color: #034154; | |
box-shadow: none; | |
position: relative; | |
top: -8px; | |
left: 2px; | |
} | |
p { | |
padding: 4px 0 2px 8px; | |
line-height: 1.7; | |
border-bottom: 1px dotted #DDD; | |
list-style: none; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment