You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB
JavaScript

import './Ded.css';
import pepe from './img/pepe.png'
function App() {
return (
<body>
<div className="container-fluid">
<div className="row">
<div className="col-12 text-center">
<h2 className="p-2" style={{ transform: 'rotate(90deg)' }}>>></h2>
</div>
</div>
</div>
<div className=" d-none d-lg-block"><div className="shoot"></div></div>
<div className="pt-2" id="burn"></div>
<div className="container-fluid">
<div className="row">
<div className="col-12 text-center">
<h1 className="p-2" style={{ color: '#231f20' }}>Shoot <input type="text" style={{ width: '2.5em' }} id="inline_field" class="nes-input default_select" placeholder="5"></input> Ducks!</h1>
<button type="button" className="nes-btn is-disabled">Shoot Ducks</button>
<p>TX fee</p>
<progress className="w-75 nes-progress" value="90" max="100"></progress>
<h1 className="p-2" style={{ color: '#231f20' }}>XXXX/XXXX Ded Ducks!</h1>
<p>The game ends wen one duck remains.</p>
<img src={pepe} className="img-fluid w-100" />
</div>
</div>
</div>
</body>
);
}
export default App;