-
Notifications
You must be signed in to change notification settings - Fork 66
/
styles.css
70 lines (59 loc) · 978 Bytes
/
styles.css
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
* {
font: 8pt Tahoma;
}
html {
padding: 0;
margin: 0;
}
canvas {
margin: 0;
padding: 0;
border-top: 1px solid gray;
border-left: 1px solid gray;
border-bottom: 1px solid white;
border-right: 1px solid white;
background: white;
}
td {
vertical-align: middle;
/*width: 200px;*/
}
input[type=button] {
border-style: outset;
border-width: 1px;
border-color: white;
}
input[type=button]:active {
border-style: inset;
border-width: 1px;
border-color: white;
}
textarea {
padding: 0;
margin: 0;
border-style: inset;
border-width: 1px;
box-sizing: border-box;
width: 100%;
resize: none;
/*height: 70px;*/
}
textarea:disabled {
background-color: lightgray;
}
select {
width: 100%;
}
thead tr td {
text-align: center;
font-weight: bold;
}
body table {
width: 100%;
}
body {
width: 800px;
margin: auto;
padding: 0;
background: #dcdcdc;
}