123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- color: #444444;
- }
- #header { position: absolute; top: 0; left: 0; width: 100%; padding: 0 16px; background: #444444; line-height: 40px; }
- #header a { color: #CCCCCC; padding: 0 8px; }
- #header a:hover { color: #FFFFFF; }
- .row { max-width: 800px; margin: auto; text-align: justify; }
- .row h1 { font-size: 3em; margin-top: 50px; }
- .row p { padding: 0 10px; }
- h1.title { margin-top: 80px; }
- .center { text-align: center; }
- h1 { font-size: 5em; }
- input { border: 2px solid #666666; color: #444444; padding: 8px; background-color: #FFFFFF; font-size: 1.1em; }
- input[type="checkbox"] { visibility: hidden; }
- .checkbox_container { display: inline-block; position: relative; padding-left: 3px; margin: 0 10px; }
- .checkbox_container label {
- cursor: pointer;
- }
- .checkbox_container label.cb {
- position: absolute;
- width: 16px;
- height: 16px;
- top: 2px;
- left: 2px;
- background: #eee;
- border:1px solid #ddd;
- }
- .checkbox_container label.cb:after {
- opacity: 0.2;
- content: '';
- position: absolute;
- width: 8px;
- height: 4px;
- background: transparent;
- top: 3px;
- left: 3px;
- border: 3px solid #333;
- border-top: none;
- border-right: none;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- transform: rotate(-45deg);
- }
- .checkbox_container label.cb:hover:after {
- opacity: 0.5;
- }
- .checkbox_container input[type=checkbox]:checked + label.cb:after {
- opacity: 1;
- }
- a { text-decoration: none; }
- .result { margin-bottom: 16px; }
- .result_title { margin-bottom: 0; }
- .result p { margin-top: 0; padding-top: 0; font-size: 0.8em; max-width: 50em; }
- .result h3 { font-size: 0.9em;}
- .result { max-width: 70em; }
- .url { font-weight: bold; }
- .q { width: 30em; }
- .engines { color: #888888; }
- .small p { margin: 2px 0; }
- .right { float: right; }
- .invisible { display: none; }
|