123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- button::-moz-focus-inner,
- input[type="reset"]::-moz-focus-inner,
- input[type="button"]::-moz-focus-inner,
- input[type="submit"]::-moz-focus-inner,
- input[type="submit"]::-moz-focus-inner,
- input[type="file"] > input[type="button"]::-moz-focus-inner
- {
- border: none;
- }
- input[type="checkbox"]:focus {
- -moz-outline-offset: -1px !important;
- -moz-outline: 1px solid #000 !important;
- }
- :focus {
- outline: none;
- } /*Remove a dotted line around 1) buttons, 2) checkboxes, 3) links*/
- a {
- text-decoration: none;
- cursor: pointer;
- color: inherit;
- }
- a:hover {
- text-decoration: underline;
- }
- div, span, a, input {
- background-repeat: no-repeat;
- }
- body {
- width: 782px;
- margin: 0 auto;
- background: #ccc url(bg.png) no-repeat center bottom;
- color: #000;
- font-size: 14px;
- font-family: Tahoma, Arial, Verdana, Meiryo, "MS Gothic", sans-serif, Lucida Sans;
- line-height: 1.5em;
- text-align: center;
- }
- .all-page {
- position: relative;
- width: 690px;
- margin: 15px auto;
- padding: 10px 30px 15px 30px;
- background: #eee;
- border: 2px solid #999;
- border-radius: 8px;
- text-align: left;
- }
- .all-page:after {
- content: "";
- position: absolute;
- left: -1px;
- top: -1px;
- width: 100%;
- height: 100%;
- height: calc(100% - 2px);
- padding: 0 1px;
- box-shadow: 0px 5px 8px #bbb;
- z-index: -1;
- } /*for crop shadow bottom for 4px (2px from border and 2px from calc)*/
- .main-title {
- font-size: 2em;
- font-weight: bold;
- margin: 0.6em 0;
- white-space: nowrap;
- display: inline-block;
- }
- .choose-lang {
- font-size: 0.8em;
- margin: 0 5px;
- opacity: 0.9;
- vertical-align: middle;
- }
- p {
- margin: 0.4em 0;
- }
- p.margin1 { margin: 0.9em 0; }
- .links-box {
- color: #999;
- }
- .example {
- width: 445px;
- height: 200px;
- }
- .blue-link {
- color: #36b;
- }
- .gray-link {
- color: #999;
- }
- .second-title {
- font-size: 1.5em;
- font-weight: bold;
- margin: 1em 0 1em;
- line-height: 1.3em;
- }
- .option-box {
- margin: 1.5em 0;
- white-space: nowrap;
- }
- .option-left {
- display: inline-block;
- width: 220px;
- color: #707070;
- font-weight: bold;
- }
- .option-left-small {
- font-size: 0.8em;
- line-height: 1.5em;
- }
- .option-right {
- display: inline-block;
- white-space: normal;
- vertical-align: top;
- }
- .option-right-small {
- margin-top: 2px;
- font-size: 0.9em;
- }
- .option-hint {
- margin: 0.5em 0;
- color: #888;
- font-size: 0.85em;
- line-height: 1.5em;
- white-space: normal;
- }
- #url {
- width: 300px;
- height: 23px;
- padding: 0 3px;
- border: 1px solid #b0b0b0;
- }
- label {
- margin: 0 5px 0 0;
- padding: 0;
- cursor: pointer;
- }
- .radio {
- margin: 0 4px 0 0;
- padding: 0;
- cursor: pointer;
- vertical-align: middle;
- }
- .r-text {
- vertical-align: middle;
- }
- .radio:checked + .r-text { color: #494; }
- .button {
- min-width: 160px;
- height: 26px;
- margin: 0 10px 3px 0;
- padding-bottom: 1px;
- background: #f2f2f2;
- background-image: linear-gradient(to bottom, #f9f9f9, #dadada);
- border: 1px solid #999;
- border-radius: 1px;
- cursor: pointer;
- }
- .button:hover:enabled {
- background: #f7f7f7;
- background-image: linear-gradient(to bottom, #fefefe, #e2e2e2);
- }
- .button:disabled {
- background-image: none;
- background-color: #ccc;
- border-color: #ccc;
- }
- .bottom-hint {
- margin: 0.85em 0;
- color: #888;
- font-size: 0.85em;
- line-height: 1.5em;
- }
- .address {
- text-align: center;
- }
- .tta_rule_text td {
- padding: 4px;
- border: 1px solid #ccc;
- }
|