| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*
- db.css by Bill Weinman <http://bw.org/contact/>
- for jurl database
- Copyright (c) 2010-2017 The BearHeart Group, LLC
- version of 2017-03-09
- */
- body {
- font-family: tahoma, sans-serif; /* default page font */
- background: #fff;
- margin: 0; /* shorthand for all margins = 0 */
- padding: 0; /* no padding */
- }
- /* reasonable margin defaults */
- p, h1, h2, h3, h4, h5, h6, li {
- margin: 1ex 0;
- }
- #content {
- width: 780px;
- margin: 1em auto 0;
- border: solid 1px #666;
- padding: 0 10px;
- }
- p.message {
- font-size: 90%;
- border: solid 1px #c66;
- padding: 1px 3px;
- background-color: #ffe;
- }
- p.error {
- font-size: 90%;
- background-color: #f66;
- color: white;
- border: solid 1px #f66;
- padding: 1px 3px;
- }
- .small {
- font-size: 80%;
- }
- h1 {
- margin: 0;
- font-size: 16pt;
- color: #448;
- }
- h2 {
- margin: 0;
- font-size: 13pt;
- color: #448;
- }
- #content input[type=text], #content textarea {
- font-family: tahoma, sans-serif;
- font-size: 85%;
- width: 780px;
- }
- #content textarea {
- font-family: tahoma, sans-serif;
- font-size: 85%;
- height: 100px;
- }
- #content input.formSubmit {
- margin-top: 1em;
- }
- /* === recline form === */
- div#reclist {
- margin-top: 20px;
- border-top: 1px solid #933;
- }
- div.recline {
- font-size: 75%;
- }
- .recline table {
- border-collapse: collapse;
- }
- .recline td {
- vertical-align: middle;
- padding: 0 3px;
- margin: 0;
- }
- .recline div.nowrap {
- white-space: nowrap;
- overflow: hidden;
- }
- div.rlshortURL, div.rltargetURL {
- background-color: #eef;
- padding: 1px 3px;
- }
- div.rltargetURL {
- width: 500px;
- }
- div.rlshortURL {
- width: 150px;
- }
- input.edit { color: #090 }
- input.delete { color: #900 }
- /* ----- paging ----- */
- div.nextprev p {
- font-size: 75%;
- text-align: center;
- color: #333;
- }
- /* this is for bare numbers */
- div.nextprev span.n {
- margin: 0 5px;
- }
- div.nextprev a {
- color: #900;
- text-decoration: none;
- padding: 0 5px;
- border-bottom: 1px solid white;
- }
- div.nextprev a:hover {
- border-bottom: 1px solid #009;
- }
- /* ----- footer ----- */
- #copyright {
- width: 800px;
- margin: 1em auto;
- color: #999;
- padding: 0;
- }
- #copyright p {
- font-size: 65%;
- text-align: right;
- margin: 0;
- padding: 0;
- }
- #copyright a {
- text-decoration: none;
- color: #96c;
- }
- #copyright a:hover {
- text-decoration: underline;
- }
|