-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudostyle.css
107 lines (91 loc) · 1.48 KB
/
sudostyle.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@CHARSET "UTF-8";
body {
background-color: gray;
font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
.mainSection {
margin-left: 20%;
margin-right: 20%;
margin-top: -12pt;
background-color: white;
border-style:groove;
border-color: black;
border-width: 1px;
}
h1 {
position:relative;
top: 12px;
text-align: center;
font-size: 20pt;
color: blue;
}
h3 {
color: blue;
font-size:large;
text-align:center;
}
input {
width: inherit;
height: inherit;
text-align:center;
background-color: transparent;
border-color: transparent;
font-size:large;
}
input.closedCell {
color: red;
}
table {
color: #333333;
border-bottom-width: 1px;
border-color: #999999;
border-collapse: collapse;
margin-left: 20%;
margin-right: 20%;
}
td {
background: #dcddc0 url('cell-grey.jpg');
width: 50px;
height: 50px;
border-width: 1px;
border-style: solid;
border-color: #999999;
}
td.rightDivider {
border-right-width: 2px;
border-right-color: black;
}
td.leftDivider {
border-left-width: 2px;
border-left-color: black;
}
td.topDivider {
border-top-width: 2px;
border-top-color: black;
}
td.bottomDivider {
border-bottom-width: 2px;
border-bottom-color: black;
}
button {
background: url('black_btn.jpg');
color: white;
width: 10em;
height: 5em;
border:none;
}
button:hover {
border-color: #0099FF;
border-style: inset;
border-width: 2px;
}
button:active {
border-width: 3px;
}
#bottomDiv {
position: relative;
width: 31em;
left: 31%;
right: 31%;
}