-
Notifications
You must be signed in to change notification settings - Fork 0
/
sudoku1.css
77 lines (77 loc) · 1.19 KB
/
sudoku1.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
table {
border-collapse:collapse;
}
td {
padding: 0;
vertical-align: top;
}
.big-box {
border-style: solid;
border-width: 2px;
}
.cell {
height: 30px;
width: 30px;
border-style: solid;
border-width: 1px;
font-size: 16pt;
text-align: center;
vertical-align:middle;
font-family: Tahoma, Geneva, sans-serif;
}
.locked {
font-weight:bold;
}
.center {
text-align: center;
vertical-align:middle;
}
td.button a {
display: block;
background: #006699;
border: 2px outset #006699;
text-decoration: none;
font-weight: bold;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 6px;
padding-right: 6px;
color: #FFFFFF;
}
td.button a:hover {
background: #0099CC;
border-color: #000000;
}
img {
cursor: hand;
}
.warning {
color: red;
}
a {
font-size: 16px;
color: black;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media print {
table, table tr, table td {
border-top: #000000 solid 1px;
border-bottom: #000000 solid 1px;
border-left: #000000 solid 1px;
border-right: #000000 solid 1px;
}
.no-print {
display: none;
}
}