summaryrefslogtreecommitdiff
path: root/default.css
diff options
context:
space:
mode:
authorMax Christian Pohle2021-12-04 14:29:49 +0100
committerMax Christian Pohle2021-12-04 14:29:49 +0100
commitbef7e1a6f6ed28d580b331063baa35b34a8f1d25 (patch)
tree2fdf190056351d42430bc2241f2c788f02673264 /default.css
parent512c406b4fb3bc4054073608707ae07f65a65890 (diff)
downloadohmycgi-bef7e1a6f6ed28d580b331063baa35b34a8f1d25.tar.bz2
ohmycgi-bef7e1a6f6ed28d580b331063baa35b34a8f1d25.zip
Prepared `letter` type and updated CSSlabelprinter
Diffstat (limited to 'default.css')
-rw-r--r--default.css80
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
3html,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
14body {
15 padding:2em;
16}
17
18h1 {
19 margin-top:0;
20}
21
22label {
23 font-size:x-small;
24 color:GrayText;
25}
26
27form {
28 border:2px solid Window;
29 border-radius: 1em;
30 padding: 2em;
31 background: AppWorkspace;
32}
33
34input, 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
48input.label {
49 height:1.5em;
50}
51
52input[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
62input:hover, input:active, textarea:hover, textarea:active {
63 background-color:Highlight;
64 color:HighlightText;
65}
66
67div.content {
68 position: relative;
69 width:50%;
70}
71
72div.content textarea[name="text"] {
73 height:12em;
74 width:100%;
75}
76
77br.clear {
78 clear:both;
79}
80
..