|
Last change
on this file since 403 was
291,
checked in by g7moreau, 7 years ago
|
- Better text align and color
|
|
File size:
2.4 KB
|
| Line | |
|---|
| 1 | /* header */ |
|---|
| 2 | .header h1 { |
|---|
| 3 | color: #88D066; |
|---|
| 4 | border-bottom: 2px solid; |
|---|
| 5 | border-color: black; |
|---|
| 6 | border-left: 2px solid; |
|---|
| 7 | border-radius: 0px 0px 0px 3ex; |
|---|
| 8 | border-color: #AACCFF; |
|---|
| 9 | margin-left: 2%; |
|---|
| 10 | } |
|---|
| 11 | |
|---|
| 12 | /* https://stackoverflow.com/questions/14920401/how-to-simulate-hfill-with-html-and-css */ |
|---|
| 13 | .header h1 ul { |
|---|
| 14 | display: flex; |
|---|
| 15 | justify-content: space-between; |
|---|
| 16 | margin: 0.5ex; |
|---|
| 17 | } |
|---|
| 18 | |
|---|
| 19 | .header h1 li { |
|---|
| 20 | display: inline; |
|---|
| 21 | } |
|---|
| 22 | |
|---|
| 23 | a#refresh { |
|---|
| 24 | background: #E0E0E0; |
|---|
| 25 | border-radius: 1.8ex;; |
|---|
| 26 | margin-left: 2ex; |
|---|
| 27 | padding: 0.3ex 1.3ex; |
|---|
| 28 | text-decoration: none; |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | a#refresh:hover { |
|---|
| 32 | text-decoration: underline solid; |
|---|
| 33 | } |
|---|
| 34 | |
|---|
| 35 | a#refresh:after { |
|---|
| 36 | content: "\00A0\21bb"; |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | /* general */ |
|---|
| 40 | a:link, a:visited { |
|---|
| 41 | text-decoration: none; |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | a:hover, a:active { |
|---|
| 45 | text-decoration: underline solid; |
|---|
| 46 | } |
|---|
| 47 | |
|---|
| 48 | span.button { |
|---|
| 49 | border: 1px solid #777; |
|---|
| 50 | margin: 10px 3px 3px 4px; |
|---|
| 51 | background: #F0F0F0; |
|---|
| 52 | border-radius: 2ex; |
|---|
| 53 | padding: 0ex 0.8ex 0px 0ex; |
|---|
| 54 | } |
|---|
| 55 | |
|---|
| 56 | .button a { |
|---|
| 57 | background: #E0E0E0; |
|---|
| 58 | border-right: 2px solid #AAA; |
|---|
| 59 | border-radius: 2ex 0px 0px 2ex; |
|---|
| 60 | padding: 0px 0.5ex 0ex 0.9ex; |
|---|
| 61 | } |
|---|
| 62 | |
|---|
| 63 | .button small { |
|---|
| 64 | padding: 0px 0.2ex 0ex 0.8ex; |
|---|
| 65 | } |
|---|
| 66 | |
|---|
| 67 | p { |
|---|
| 68 | line-height: 3ex; |
|---|
| 69 | } |
|---|
| 70 | |
|---|
| 71 | table { |
|---|
| 72 | border: none; |
|---|
| 73 | margin: 0; |
|---|
| 74 | } |
|---|
| 75 | |
|---|
| 76 | td { |
|---|
| 77 | border: 0px; |
|---|
| 78 | vertical-align: middle; |
|---|
| 79 | } |
|---|
| 80 | |
|---|
| 81 | td.bold { |
|---|
| 82 | font-weight: bold; |
|---|
| 83 | } |
|---|
| 84 | |
|---|
| 85 | td.hoop { |
|---|
| 86 | border: 1px solid #777; |
|---|
| 87 | } |
|---|
| 88 | |
|---|
| 89 | td.comment { |
|---|
| 90 | max-width: 60%; |
|---|
| 91 | font-size: small; |
|---|
| 92 | } |
|---|
| 93 | |
|---|
| 94 | td.days { |
|---|
| 95 | text-align: right; |
|---|
| 96 | } |
|---|
| 97 | |
|---|
| 98 | td.checking { |
|---|
| 99 | background-color: #EB7239; |
|---|
| 100 | border-radius: 0ex 2ex 2ex 0ex; |
|---|
| 101 | color: white; |
|---|
| 102 | font-size: x-small; |
|---|
| 103 | font-weight: bold; |
|---|
| 104 | padding: 0ex 0.8ex 0ex 0.8ex; |
|---|
| 105 | text-align: right; |
|---|
| 106 | } |
|---|
| 107 | |
|---|
| 108 | td.checking:after { |
|---|
| 109 | content: "\21B5"; |
|---|
| 110 | } |
|---|
| 111 | |
|---|
| 112 | hr { |
|---|
| 113 | border-style: solid; |
|---|
| 114 | border-width: 1px; |
|---|
| 115 | color: #AACCFF; |
|---|
| 116 | margin-top: 4ex; |
|---|
| 117 | width: 70%; |
|---|
| 118 | } |
|---|
| 119 | |
|---|
| 120 | /* action */ |
|---|
| 121 | .action h2 { |
|---|
| 122 | color: #88D066; |
|---|
| 123 | } |
|---|
| 124 | |
|---|
| 125 | /* footer */ |
|---|
| 126 | .footer { |
|---|
| 127 | float : right; |
|---|
| 128 | margin-right: 5%; |
|---|
| 129 | } |
|---|
| 130 | |
|---|
| 131 | div.footer { |
|---|
| 132 | font-size: xx-small; |
|---|
| 133 | color: #666; |
|---|
| 134 | } |
|---|
| 135 | |
|---|
| 136 | .footer ul { |
|---|
| 137 | margin-top: 0.8ex; |
|---|
| 138 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.