123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /*
- * Copyright (c) 2016, 2024, 5 Mode
- * All rights reserved.
- *
- * This file is part of www-conf-viewer.
- *
- * www-conf-viewer is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * www-conf-viewer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with www-conf-viewer. If not, see <https://www.gnu.org/licenses/>.
- * config.inc
- *
- * www-conf-viewer style sheet.
- *
- * @author Daniele Bonini <my25mb@aol.com>
- * @copyrights (c) 2021, 2024, 5 Mode
- */
- body {
- }
- .aaa {
- font-weight:900;
- color:#000000;
- }
- .bbb {
- color: #7bca2e;
- text-decoration: underline;
- }
- #directive {
- text-decoration: underline dotted greenyellow;
- }
- #directive-desc {
- font-size: 8px;
- text-decoration: underline dotted greenyellow;
- padding-left:0px;
- }
- #directive-desc2 {
- font-size: 8px;
- text-decoration: underline dotted greenyellow;
- padding-left:0px;
- }
- #footerCont {
- position: fixed;
- top: 2000px;
- left:-10px;
- width: 102%;
- border: 1px solid #C2DBF2;
- padding: 7px;
- background: white;
- opacity: 0.3;
- color:white;
- font-family: Arial,Sans,Vardana;
- font-size: 12px;
- text-align: center;
- z-index: 99998;
- }
- #footer {
- position: fixed;
- float: right;
- top: 2000px;
- left:-10px;
- width: 100%;
- border: 0px solid #C2DBF2;
- padding: 7px;
- opacity: 1.0;
- color:black;
- font-family: Arial,Sans,Vardana;
- font-size: 12px;
- font-weight: 400;
- text-align: right;
- z-index: 99999;
- }
- table {
- width:100%;
- max-width:950px;
- background:#e9eef8;
- box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
- clear:both;
- margin:auto;
- }
- #hashMe {
- position:relative;
- left:-2px;
- top:+5px;
- font-size:18px;
- font-weight:900;
- color:#000000;
- }
- #originsDisplay {
- float:left;
- position:fixed;
- top:680px;
- left:20px;
- width:275px;
- height:120px;
- font-family: Monospace, Verdana, Serif;
- font-size: 14px;
- background-color: #020401;
- border: 3px solid lightgray;
- text-align:left;
- color: #FFFFFF;
- white-space:nowrap;
- font-weight:900;
- padding:10px;
- padding-top:4px;
- z-index:99999;
- display:none;
- }
- .originLabel {
- color: #7bca2e;
- font-weight:900;
- }
- #Password {
- font-size:18px;
- background:transparent;
- width: 60%;
- border-radius:3px;
- font-weight:900;
- }
- #passworddisplay {
- float:left;
- position:fixed;
- top:680px;
- left:50px;
- width:255px;
- height:120px;
- background:darkgray;
- text-align:left;
- white-space:nowrap;
- font-family:Arial,Sans,Verdana;
- color:#000000;
- font-weight:900;
- z-index:99999;
- }
- #Salt {
- position:relative;
- top:+5px;
- font-size:18px;
- background:transparent;
- width: 90%;
- border-radius:3px;
- font-weight:900;
- }
- .td-caption {
- width: 350px;
- background-color:#01963a;
- color: #FFFFFF;
- padding:8px;
- padding-top:4px;
- padding-bottom:4px;
- }
- .td-caption:hover {
- background-color:#39b455;
- }
- .td-caption2 {
- width: 350px;
- background-color: #67b168;
- color: #FFFFFF;
- padding:8px;
- padding-left:32px;
- padding-top:4px;
- padding-bottom:4px;
- }
- .td-caption2:hover {
- background-color: #87d287;
- }
- .td-tab {
- width: 25px;
- background-color: #67b168;
- padding:8px;
- padding-top:4px;
- padding-bottom:4px;
- }
- .td-full-opts {
- width: 600px;
- background-color: #ebebeb;
- padding:8px;
- padding-top:4px;
- padding-bottom:4px;
- border-top: 1px dotted gray;
- }
- .td-server-spec {
- width: 100%;
- background-color: #01963a;
- color:#FFFFFF;
- padding:8px;
- padding-top:4px;
- padding-bottom:4px;
- border-top: 1px dotted gray;
- }
- .td-server-spec-php {
- width: 100%;
- background-color: #7a86b8;
- color:#FFFFFF;
- padding:8px;
- padding-top:4px;
- padding-bottom:4px;
- border-top: 1px dotted gray;
- }
|