1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
/*************************************************************************************************/
/*************************************************************************************************/
/* CSS-Rules used in the 'package-frame.html' and 'overview-frame.html' Files                    */
/*************************************************************************************************/
/*************************************************************************************************/


/*
 * These CSS Rules are used in the 'package-frame.html' and 'overview-frame.html' Files that are
 * "re-added" back into the 'javadoc/' directory after having been fully @Deprecated by Sun /
 * Oracle beginning JDK 12 or 14 or something like that.
 */

BODY
{
    color:          var(--Frames-Body-Color);
    background:     var(--Frames-Body-Background);
    font-family:    'DejaVu Sans', Arial, Helvetica, sans-serif;
    font-size:      14px;
    margin:         0;
    padding:        0;
    height:         100%;
    width:          100%;
}

H1
{
    color:          var(--Frames-H1-Color) !important;
    background:     var(--Frames-H1-Background);

    font-size:      120%;
    font-weight:    bold;

    padding:        0.7em 1em 0.7em 1em !important;
    margin:         0.75em 0.5em 1em 0.5em !important;

    border:         1px solid parent;
    border-radius:  0.75em;

    overflow:       auto; /* If they "spill-over", generate a slider bar */
}

H2
{
    color:          var(--Frames-H2-Color) !important;
    background:     var(--Frames-H2-Background);

    font-size:      120% !important;
    font-weight:    bold;

    padding:        0.4em 0.2em 0.4em 0.9em !important;
    margin-top:     1.9em !important;

    border:         1px solid parent;
    border-radius:  0.75em;

    white-space:    nowrap;
    overflow:       auto; /* If they "spill-over", generate a slider bar */
}


/* ********************************************************************************************* */
/* Anchors.                                                                                      */
/* ********************************************************************************************* */

A
{ text-decoration: none; }

H1 A,
H1 A:visited
{ color: var(--Frames-H1-Anchor) !important; }

H1 A:HOVER,
H1 A:FOCUS
{ color: var(--Frames-H1-Anchor-Hover) !important; }

LI A,
LI A:visited
{ color: var(--Frames-LI-Anchor) !important; }

LI A:HOVER, 
LI A:FOCUS
{ color: var(--Frames-LI-Anchor-Hover) !important; }


/* ********************************************************************************************* */
/* The Rest of it                                                                                */
/* ********************************************************************************************* */

DIV
{
    margin:         10px;
    position:       relative;
    font-size:      12px;
}

UL
{
    display:        block;
    margin:         0;
    padding:        0;
    margin-left:    0.75em !important;
    transition:     opacity 0.5s ease;
}

LI
{
    list-style:     none;
    padding-top:    2px;
}