-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (82 loc) · 1.47 KB
/
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
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
body, html {
height: 100%;
}
.title {
display: inline-block;
margin-right: 15px;
margin-left: 15px;
}
.game-board-table {
margin-top: 10px;
margin-bottom: 10px;
}
#solveSpeed {
width: 75px;
}
#msgDiv {
font-size:120%;
height: 30px;
}
.greenText {
color: #00cc00;
}
.redText {
color: #ff0000;
}
td:first-child {
border-left:solid;
}
td:nth-child(3n) {
border-right:solid ;
}
tr:first-child {
border-top:solid;
}
tr:nth-child(3n) td {
border-bottom:solid ;
}
.game-cell{
height: 57px;
border: 1px solid black;
}
.game-cell.highlight {
background-color: #ffff80;
}
.cellInput{
height: 100%;
width: 100%;
font-size: 120%;
text-align: center;
border: 0px;
}
.solveOne, .clearPuzzle {
margin-left: 20px;
}
.load.btn {
margin-bottom: 10px;
}
.container-fluid {
min-height: 100%;
overflow: auto;
padding-bottom: 62px; /* this needs to be bigger than footer height*/
}
.navbar.navbar-bottom {
position: relative;
margin-top: -52px; /* negative value of footer height */
margin-bottom: 0px;
clear:both;
}
@media (max-width: 991px) {
#descriptionBtn {
margin-left: 15px;
margin-right: 15px;
margin-bottom: 15px;
}
}
@media (min-width: 992px) {
#descriptionBtn {
float: right;
margin-top: 20px;
margin-right: 15px;
}
}