diff options
Diffstat (limited to 'default.css')
| -rw-r--r-- | default.css | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/default.css b/default.css new file mode 100644 index 0000000..64f121e --- /dev/null +++ b/default.css | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | @charset "UTF-8"; | ||
| 2 | |||
| 3 | html,body { | ||
| 4 | background: Window; | ||
| 5 | font: caption; | ||
| 6 | color: WindowText; | ||
| 7 | margin:0; | ||
| 8 | height:100%; | ||
| 9 | overflow:hidden; | ||
| 10 | line-height: 1.5; | ||
| 11 | letter-spacing: 0.033em; | ||
| 12 | } | ||
| 13 | |||
| 14 | body { | ||
| 15 | padding:2em; | ||
| 16 | } | ||
| 17 | |||
| 18 | h1 { | ||
| 19 | margin-top:0; | ||
| 20 | } | ||
| 21 | |||
| 22 | label { | ||
| 23 | font-size:x-small; | ||
| 24 | color:GrayText; | ||
| 25 | } | ||
| 26 | |||
| 27 | form { | ||
| 28 | border:2px solid Window; | ||
| 29 | border-radius: 1em; | ||
| 30 | padding: 2em; | ||
| 31 | background: AppWorkspace; | ||
| 32 | } | ||
| 33 | |||
| 34 | input, textarea { | ||
| 35 | background: Menu; | ||
| 36 | color: MenuText; | ||
| 37 | cursor:pointer; | ||
| 38 | font: caption; | ||
| 39 | padding: 0.3em 0.5em; | ||
| 40 | width:25ex; | ||
| 41 | height:6em; | ||
| 42 | border: 3px ridge; | ||
| 43 | border-width: 0px 0px 2px 0px; | ||
| 44 | border-color: ButtonShadow; | ||
| 45 | margin-right:2em; | ||
| 46 | } | ||
| 47 | |||
| 48 | input.label { | ||
| 49 | height:1.5em; | ||
| 50 | } | ||
| 51 | |||
| 52 | input[type="submit"] { | ||
| 53 | width:inherit; | ||
| 54 | height:inherit; | ||
| 55 | border-radius:1ex; | ||
| 56 | border-width:2px; | ||
| 57 | font-weight:bold; | ||
| 58 | background-color: ButtonFace; | ||
| 59 | color: ButtonText; | ||
| 60 | } | ||
| 61 | |||
| 62 | input:hover, input:active, textarea:hover, textarea:active { | ||
| 63 | background-color:Highlight; | ||
| 64 | color:HighlightText; | ||
| 65 | } | ||
| 66 | |||
| 67 | div.content { | ||
| 68 | position: relative; | ||
| 69 | width:50%; | ||
| 70 | } | ||
| 71 | |||
| 72 | div.content textarea[name="text"] { | ||
| 73 | height:12em; | ||
| 74 | width:100%; | ||
| 75 | } | ||
| 76 | |||
| 77 | br.clear { | ||
| 78 | clear:both; | ||
| 79 | } | ||
| 80 | |||
