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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | /*************************************************************************************************/ /*************************************************************************************************/ /* 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); border: 0.1em solid var(--Frames-H1-Border); border-bottom: 0.3em solid var(--Frames-H1-Border) !important; 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; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 2px 4px var(--Frames-H1H2-Shadow1-Down), inset 0 0 10px var(--Frames-H1H2-Shadow2), inset 0 1px 2px var(--Frames-H1H2-Shadow3); } H1:hover { transform: translateY(-4px); box-shadow: 0 4px 8px var(--Frames-H1H2-Shadow1-Up), inset 0 0 10px var(--Frames-H1H2-Shadow2), inset 0 1px 2px var(--Frames-H1H2-Shadow3); } 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; /* This is here because it is not obvious that these are clickable */ cursor: pointer; box-shadow: 0 2px 4px var(--Frames-H1H2-Shadow1-Down), inset 0 0 10px var(--Frames-H1H2-Shadow2), inset 0 1px 2px var(--Frames-H1H2-Shadow3); } /* ********************************************************************************************* */ /* 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; } |