JSFiddle - React, Tailwind, and code Playground
by yash009
HTML
<h1>De zakelijke VR/AR hardware leverancier van Benelux</h1>
<div class="img-wrapper">
<img class="img-responsive" src="vrgt.png">
</div>
<a href="#" class="btn">Meer Info</a>
CSS
img-wrapper {
position: relative;
}
.img-responsive {
max-width: 100%;
height: auto;
margin-top: 180px;
margin-left: 360px;
}
a.btn {
display: inline-block;
padding: 0.2em 1.45em;
margin: 0.1em;
border: 0.15em solid #CCCCCC;
box-sizing: border-box;
text-decoration: none;
font-family: 'Segoe UI', 'Roboto', sans-serif;
font-weight: 400;
color: #000000;
background-color: #ffc966;
text-align: center;
position: relative;
}
a.btn:hover {
border-color: #7a7a7a;
}
a.btn:active {
background-color: #999999;
}
@media all and (max-width:30em) {
a.btn {
display: block;
margin: 0.2em auto;
}
}