Here is the css and i see plenty of contct mentioned.
Can you advise why you dont see it ?
Code:
/* null margins and padding to give good cross-browser baseline */
html,body,address,blockquote,div,
form,fieldset,caption,
h1,h2,h3,h4,h5,h6,
hr,ul,li,ol,ul,dl,dt,dd,
table,tr,td,th,p,img {
margin:0;
padding:0;
}
img, fieldset {
border:none;
}
hr {
display:none;
/*
HR in my code are for semantic breaks in topic/section, NOT
style/presenation, so hide them from screen.css users
*/
}
@media (max-width:480px) {
/*
Some older small screen devices will try to force a text-size
adjustment regardless of our viewport meta, this overrides that
so it obeys what we tell it. This is in a max-width query so that
we don't send this to desktop safari, as it breaks zooming there...
Even though it does NOT break zooming in mobile Safari?
Way to herpa that derp there Apple!
*/
* {
-webkit-text-size-adjust:none;
-ms-text-size-adjust:none;
}
}
body {
min-width:48em; /* for legacy desktops */
padding:0 1em 1em;
font:normal 85%/150% arial,helvetica,sans-serif;
}
h1 {
text-align:center;
padding:0.5em 0;
}
#contact {
max-width:66em;
margin:0 auto;
}
#contact b {
color:#F00;
}
@media (min-width:1px) {
/* sneaky trick to target just modern browsers */
#contact fieldset br {
display:none;
}
#contact fieldset div {
float:left;
width:50%;
padding:0 0.5em 0.75em 11.5em;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
#contact fieldset div:nth-child(even) {
padding:0 0 0.75em 12em;
}
#contact fieldset .hasTextArea {
width:100%;
padding-right:0;
}
#contact label {
float:left;
width:11em;
padding-right:0.5em;
margin-left:-11.5em;
text-align:right;
}
#contact fieldset input,
#contact fieldset textarea {
width:100%;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
#contact .submitsAndHiddens {
clear:both;
padding-left:11.5em;
text-align:right;
}
#contact .submitsAndHiddens p {
float:left;
}
}
@media (max-width:48em) {
body {
min-width:192px;
}
#contact {
max-width:33em;
margin:0 auto;
}
#contact fieldset div,
#contact fieldset div:nth-child(even) {
float:none;
width:auto;
padding:0 0 0.75em 11.5em;
}
}
@media (max-width:25em) {
#contact label {
float:none;
display:block;
width:auto;
margin:0;
text-align:left;
}
#contact fieldset div,
#contact fieldset div:nth-child(even) {
padding:0 0 0.75em;
}
#contact .submitsAndHiddens {
padding-left:0;
text-align:center;
}
#contact .submitsAndHiddens p {
float:none;
}
}
Bookmarks