1/* 2 * Copyright (c) 2021. ComboStrap, Inc. and its affiliates. All Rights Reserved. 3 * 4 * This source code is licensed under the GPL license found in the 5 * COPYING file in the root directory of this source tree. 6 * 7 * @license GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html) 8 * @author ComboStrap <support@combostrap.com> 9 * 10 */ 11 12/** 13* The style for the output of the javascript console 14* 15* @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 16* @author Nicolas GERARD 17* 18* Don't forget to increment the version number in the CONSTANT WEB_CONSOLE_CSS_VERSION of webcode.php 19* when the content changes 20*/ 21 22body { 23 font-family: Consolas, serif; 24 font-size: 14px; 25 color: #333333; 26} 27 28#webCodeConsole { 29 background-color: #E8E8E8; 30 padding: 10px; 31 margin-bottom: 20px; 32 border: 1px solid #969696; 33 border-radius: 4px; 34} 35 36.webCodeConsoleLine { 37 margin-top: 4px; 38 margin-bottom: 4px; 39} 40 41.webConsoleTitle { 42 padding-left: 10px; 43 margin-bottom: 4px; 44 font-weight: bold; 45} 46 47table>thead>tr>th:first-letter { 48 text-transform:capitalize; 49} 50 51table>tbody>tr:nth-of-type(odd) { 52 background-color: #f9f9f9; 53} 54 55table>tbody>tr:nth-of-type(even) { 56 background-color: #d8d7d7; 57} 58 59td, th { 60 padding: 0.5rem; 61} 62