-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (57 loc) · 922 Bytes
/
style.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
.cell-small, .cell-big{
display: inline-block;
}
div{
margin: 0px;
}
.cell-small{
width: 45px;
height: 45px;
text-align: center;
line-height: 45px;
border: 1px solid black;
margin-right: -1px;
margin-bottom: -1px;
}
.cell-big{
border: 1px solid blue;
padding-right: 1px;
padding-bottom: 1px;
margin-bottom: -2px;
margin-right: -2px;
}
.attempt{
cursor: pointer;
}
.digits{
position: absolute;
border: 1px solid black;
z-index: 100;
background-color: #fff;
display: none;
}
.digit{
height: 40px;
width: 40px;
border: 1px solid black;
line-height: 40px;
text-align: center;
display: inline-block;
float: left;
cursor: pointer;
}
.digit:hover{
font-weight: bold;
}
.cell-small.active{
background-color: lightyellow;
}
.cell-small.wrong{
background-color: crimson;
}
.field{
position: relative;
}
.hovered{
background-color: lightblue;
}