summaryrefslogtreecommitdiff
path: root/default.css
blob: 64f121e0fc9c7ed7e20a912881d7e6859a38ee07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@charset "UTF-8";

html,body {
	background: Window;
	font: caption;
	color: WindowText;
	margin:0;
	height:100%;
	overflow:hidden;
	line-height: 1.5;
	letter-spacing: 0.033em;
}

body {
	padding:2em;
}

h1 {
	margin-top:0;
}

label {
	font-size:x-small;
	color:GrayText;
}

form {
	border:2px solid Window;
	border-radius: 1em;
	padding: 2em;
	background: AppWorkspace;
}

input, textarea {
	background: Menu;
	color: MenuText;
	cursor:pointer;
	font: caption;
	padding: 0.3em 0.5em;
	width:25ex;
	height:6em;
	border: 3px ridge;
	border-width: 0px 0px 2px 0px;
	border-color: ButtonShadow;
	margin-right:2em;
}

input.label {
	height:1.5em;
}

input[type="submit"] {
	width:inherit;
	height:inherit;
	border-radius:1ex;
	border-width:2px;
	font-weight:bold;
	background-color: ButtonFace;
	color: ButtonText;
}

input:hover, input:active, textarea:hover, textarea:active {
	background-color:Highlight;
	color:HighlightText;
}

div.content {
	position: relative;
	width:50%;
}

div.content textarea[name="text"] {
	height:12em;
	width:100%;
}

br.clear {
	clear:both;
}

..