56 lines
749 B
CSS
56 lines
749 B
CSS
|
|
body, input, textarea, select, option {
|
|
font-family: Futura, Futura-Medium, "Futura Medium", "Century Gothic", CenturyGothic, "Apple Gothic", AppleGothic, "URW Gothic L", "Avant Garde", sans-serif;
|
|
color: #000;
|
|
}
|
|
|
|
body {
|
|
background: #eaeaec;
|
|
}
|
|
|
|
a {
|
|
color: #c40000;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link:hover,
|
|
a:visited:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a img{
|
|
border: 0;
|
|
}
|
|
|
|
.main {
|
|
text-align: center;
|
|
min-height: 350px;
|
|
}
|
|
|
|
.answer {
|
|
padding-top: 15%;
|
|
font-size: 7em;
|
|
}
|
|
|
|
.yes {
|
|
color: #00cf00;
|
|
}
|
|
|
|
.no {
|
|
color: #ff0000;
|
|
line-height: 0;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
font-size: 0.7em;
|
|
color: #c0c0c0;
|
|
text-align: center;
|
|
background: #eaeaec;
|
|
}
|