diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2022-06-09 15:11:40 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2022-06-09 15:11:40 +0200 |
| commit | 28c6b9090727cc7e9eda7c6a7d8cefdfc02ef6ce (patch) | |
| tree | d4e1b5518024c6653a0b88f474ca09b723d938fc /src/style-4.css | |
| parent | 98934e523c9d05823d7358018017fd880def9716 (diff) | |
| download | sebastiano.tronto.net-28c6b9090727cc7e9eda7c6a7d8cefdfc02ef6ce.tar.gz sebastiano.tronto.net-28c6b9090727cc7e9eda7c6a7d8cefdfc02ef6ce.zip | |
Added overflow-x property to pre tag
Diffstat (limited to 'src/style-4.css')
| -rw-r--r-- | src/style-4.css | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/src/style-4.css b/src/style-4.css new file mode 100644 index 0000000..67cc926 --- /dev/null +++ b/src/style-4.css | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | header nav table { | ||
| 2 | width: 100%; | ||
| 3 | } | ||
| 4 | |||
| 5 | .logo img { | ||
| 6 | max-width: 3em; | ||
| 7 | margin: 0 0 0 0; | ||
| 8 | } | ||
| 9 | |||
| 10 | .links { | ||
| 11 | text-align: right; | ||
| 12 | font-weight: bold; | ||
| 13 | } | ||
| 14 | |||
| 15 | footer table { | ||
| 16 | font-style: italic; | ||
| 17 | width: 100%; | ||
| 18 | } | ||
| 19 | |||
| 20 | .hosted { | ||
| 21 | text-align: right; | ||
| 22 | } | ||
| 23 | |||
| 24 | body { | ||
| 25 | margin: auto 8px 20px 8px; | ||
| 26 | } | ||
| 27 | |||
| 28 | img { | ||
| 29 | display: block; | ||
| 30 | margin-left: auto; | ||
| 31 | margin-right: auto; | ||
| 32 | max-width: 100%; | ||
| 33 | } | ||
| 34 | |||
| 35 | code { | ||
| 36 | background-color: #eeeeee; | ||
| 37 | padding: 2px; | ||
| 38 | } | ||
| 39 | |||
| 40 | pre code { | ||
| 41 | padding: 0px; | ||
| 42 | } | ||
| 43 | |||
| 44 | pre { | ||
| 45 | background-color: #eeeeee; | ||
| 46 | border: 2px solid; | ||
| 47 | padding: 6px; | ||
| 48 | overflow-x: auto; | ||
| 49 | } | ||
| 50 | |||
| 51 | #blob { | ||
| 52 | background: #ffffff; | ||
| 53 | border: none; | ||
| 54 | } | ||
| 55 | |||
| 56 | a { | ||
| 57 | color: #0f2899; | ||
| 58 | text-decoration: none; | ||
| 59 | } | ||
| 60 | |||
| 61 | .links a { | ||
| 62 | font-weight: bold; | ||
| 63 | color: black; | ||
| 64 | } | ||
| 65 | |||
| 66 | .hosted a, | ||
| 67 | .contact a { | ||
| 68 | font-weight: bold; | ||
| 69 | } | ||
| 70 | |||
| 71 | a:hover { | ||
| 72 | text-decoration: underline; | ||
| 73 | } | ||
| 74 | |||
| 75 | html { | ||
| 76 | margin: 1em auto; | ||
| 77 | max-width: 42em; | ||
| 78 | } | ||
| 79 | |||
| 80 | h1 { | ||
| 81 | text-align: center; | ||
| 82 | } | ||
| 83 | |||
| 84 | td h1 { | ||
| 85 | text-align: left; | ||
| 86 | font-size: 1.5em; | ||
| 87 | } | ||
| 88 | |||
| 89 | table { | ||
| 90 | width: 100%; | ||
| 91 | } | ||
| 92 | |||
| 93 | #files td { | ||
| 94 | font-family: monospace; | ||
| 95 | font-size: 1.2em; | ||
| 96 | min-width: 7em; | ||
| 97 | } | ||
| 98 | |||
| 99 | #log tr:hover td, | ||
| 100 | #files tr:hover td { | ||
| 101 | background-color: #eeeeee; | ||
| 102 | } | ||
| 103 | |||
| 104 | .url td { | ||
| 105 | font-family: monospace; | ||
| 106 | } | ||
| 107 | |||
| 108 | table tr td a img { | ||
| 109 | min-width: 33px; | ||
| 110 | } | ||
