elbaitemoon

Elbaite theme for Pale Moon
Log | Files | Refs

aboutProfiles.css (2154B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2  * License, v. 2.0. If a copy of the MPL was not distributed with this
      3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 html {
      6   --aboutProfiles-table-background: #181411;
      7   background-color: var(--in-content-frame-background); /* was var(--in-content-page-background) --johnGraciliano */
      8   padding: 48px 48px;
      9 }
     10 
     11 body {
     12   margin: auto;
     13 }
     14 
     15 #body {
     16   box-sizing: content-box;
     17   max-width: 90em;
     18   background-color: var(--in-content-page-background);
     19   color: #bfbbb6;
     20   border: 1px solid var(--in-content-main-border-color);
     21   border-radius: 10px;
     22   padding: 3em 30px;
     23 }
     24 
     25 .page-subtitle {
     26   margin-bottom: 3em;
     27 }
     28 
     29 button {
     30   margin-inline-start: 0;
     31   margin-inline-end: 8px;
     32 }
     33 
     34 table {
     35   background-color: var(--aboutProfiles-table-background);
     36   color: var(--in-content-text-color);
     37   font: message-box;
     38   text-align: start;
     39   width: 100%;
     40   border: 1px solid var(--in-content-border-color);
     41   border-spacing: 0px;
     42 }
     43 
     44 th, td {
     45   border-width: 0;
     46   border-style: solid;
     47   padding: 4px;
     48   text-align: start;
     49 }
     50 
     51 th {
     52   background-color: var(--in-content-table-header-background);
     53   color: var(--in-content-selected-text);
     54   border-color: var(--in-content-border-color);
     55 }
     56 
     57 th.column {
     58   white-space: nowrap;
     59   width: 0px;
     60 }
     61 
     62 td {
     63   border-color: var(--in-content-table-border-dark-color);
     64 }
     65 
     66 th:not(:last-child),
     67 td:not(:last-child){
     68   border-inline-end-width: 1px;
     69   border-inline-end-width: 1px;
     70 }
     71 
     72 tr:not(:last-child) > th,
     73 tr:not(:last-child) > td{
     74   border-bottom-width: 1px;
     75 }
     76 
     77 thead + tbody > tr:first-child > td{
     78   border-top:  1px solid var(--in-content-border-color);
     79 }
     80 
     81 table button {
     82   padding-top: 1px;
     83   padding-bottom: 1px;
     84   margin: 1px;
     85   height: auto;
     86   min-height: unset;
     87   line-height: normal;
     88 }
     89 
     90 #action-box {
     91   background-color: var(--aboutProfiles-table-background);
     92   border: 1px solid var(--in-content-border-color);
     93   color: var(--in-content-text-color);
     94   float: right;
     95   margin-top: 2em;
     96   margin-bottom: 20px;
     97   margin-inline-start: 20px;
     98   margin-inline-end: 0;
     99   padding: 16px;
    100   width: 30%;
    101 }
    102 
    103 #action-box:-moz-dir(rtl) {
    104   float: left;
    105 }