-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheet1.css
103 lines (88 loc) · 1.43 KB
/
sheet1.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
body
{
height: 100%;
width: 100%;
position: relative;
}
#header {
width: 100%;
margin-left: 35%;
}
#grid {
width: 10%;
height: 10%;
margin-left: 30%;
margin-top: 0;
border: 3px solid #000000;
}
#sudoku {
margin: 10%;
}
.cell input {
display: inline-block;
border: 1% solid black;
width: 40px;
height: 40px;
text-align: center;
font-size: 30px;
}
.cell1 input {
display: inline-block;
border: 1% solid black;
width: 40px;
height: 40px;
text-align: center;
font-size: 30px;
}
.cell1
{
border-width: 4px;
border-color:blue;
}
.cell
{
border-width: 4px;
border-color: red;
}
nav
{
list-style-type: none;
background-color: #333333;
overflow: hidden;
margin-left: 40%;
padding: 0;
width: 30%;
margin-top: 5%;
}
li
{
list-style: none;
float:left;
}
a
{
text-decoration: none;
color: white;
display: block;
text-align: center;
padding: 10px;
}
a:hover
{
background-color: #111111;
}
.button
{
float: right;
background-color: #008CBA;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 25px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}