| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- body {
- background-color: #fff;
- }
- body>div {
- margin-left: auto;
- margin-right: auto;
- padding: 10px;
- font-family: sans-serif;
- text-align: justify;
- }
- #icon {
- width: 1em;
- padding-right: .3em;
- }
- button {
- background: white;
- border-color: rgb(191, 191, 191);
- border-style: solid;
- height: 25px;
- border-radius: 2px;
- }
- button:active {
- border-color: rgb(237, 237, 237);
- }
- #popupContent {
- height: auto;
- padding-right: 5px;
- }
- #popupContent .option {
- margin-left: 5px;
- margin-bottom: 12px;
- }
- #popupContent .bottom {
- padding-top: 20px;
- }
- input[type="checkbox"],button,input[type="text"],input[type="number"] {
- float: right;
- margin: 1px 0px;
- }
- input[type="checkbox"] {
- margin-top: 4px;
- }
- input[type="number"] {
- width: 40px;
- text-align: right;
- padding-right: 2px;
- }
- button {
- padding-left: 20px;
- padding-right: 20px;
- }
- h2 {
- margin-bottom: 14px;
- margin-top: 14px;
- }
- h3 {
- margin-bottom: 10px;
- margin-top: 10px;
- }
- a {
- display: inline-block;
- padding-top: 5px;
- }
- #reloadButton {
- background: lightGrey;
- bottom: 0px;
- margin: 5px;
- position: absolute;
- right: 0px;
- }
- .help {
- font-size: 9pt;
- color: LightSlateGrey;
- display: none;
- }
- .help p {
- margin-top: 0.5em;
- margin-bottom: 0.5em;
- }
- .question-mark {
- padding-left: 4px;
- cursor: pointer;
- opacity: .5;
- }
- .question-mark:hover {
- opacity: .8;
- }
|