Headstone Assignment
by XTREME104
HTML
<div id="headstone">
<p id="name">Herbert White</p>
<br/>
<p id="time">1880-1904</p>
<br/>
<p id="message">I only wish I had the time to race my car one last time</p>
</div>
CSS
body {
background: black;
}
div#headstone {
position: absolute;
top: 100px;
bottom: 100px;
left: 100px;
right: 100px;
min-height: 400px; /* Set a minimum height, so the text doesnt get chopped off in a small window */
padding: 75px; /* Push text in from headstone edges */
background: lightgray; /* Light Gray Color */
border: 1px solid black; /* Black border */
border-top-left-radius: 100px; /* Rounded top left corner */
border-top-right-radius: 100px; /* Rounded top right corner */
box-shadow: inset 0 0 150px 85px gray, 0 0 50px white; /* Inner gray shadow, outer white shadow */
user-select: none; /* W3C standard not yet implimented */
-webkit-user-select: none; /* Safari and Google Chrome */
-moz-user-select: none; /* Firefox */
-o-user-select: none; /* Opera */
-ie-user-select: none; /* Internet Explorer */
cursor: default; /* Dont show the text cursor */
}
div#headstone * {
text-align: center;
font-size: 48px;
font-family: Helvetica-neue, Helvetica, Arial;
font-weight: bold;
}