-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (128 loc) · 3.01 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* Design By Keyur Diwan */
html, body {
background-color: rgb(196, 247, 247);
min-width: 600px;
font-family: monospace;
font-size: 1.5 em;
}
table {
border: 2px solid #000000;
}
td {
border: 1px solid #000000;
text-align: center;
vertical-align: middle;
}
input {
color: rgba(26, 252, 5, 0.815);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 0;
border: 0;
text-align: center;
width: 48px;
height: 48px;
font-size: 24px !important;
background-color: whitesmoke;
outline: none;
}
right-ans{
color: chartreuse;
}
input:disabled {
color:black;
/* font-weight: bold; */
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.row-2, .row-5 {border-bottom: 2px solid #000000;}
.row-3, .row-6 {border-top: 2px solid #000000;}
.col-2, .col-5 {border-right: 2px solid #000000;}
.col-3, .col-6 {border-left: 2px solid #000000;}
.col-0 {border-left: 2px solid #000000;}
.row-0 {border-top: 2px solid #000000;}
.col-8 {border-right: 2px solid #000000;}
.row-8 {border-bottom: 2px solid #000000;}
.background-gray{
/* background-color: hotpink; */
background-color: rgb(222, 236, 240) !important;
}
.wrong-answer{
color: red;
}
.action-container{
margin-left: auto;
margin-right: auto;
display: grid;
grid-template-rows: auto auto auto;
}
.actions{
margin-left: auto;
margin-right: auto;
display: grid;
grid-template-columns: auto auto auto;
max-width: 600px;
}
.container{
display: grid;
grid-row: auto auto auto;
}
.board-container{
margin-left: auto;
margin-right: auto;
}
.footer{
margin-right: auto;
margin-left: auto;
font-size: 28px;
}
.score, .submit{
margin-left: auto;
margin-right: auto;
padding: 0.5em;
}
button:hover{
cursor: pointer;
background-color: lightcyan;
border: 1px solid black;
}
button:disabled{
cursor: default;
background-color: lightcyan;
color: black;
font-size: 16px;
padding: 7px;
margin: 10px;
border: 1px solid black;
/* border: black; */
}
select, button{
font-size: 16px;
padding: 7px;
margin: 10px;
background-color: lightcyan ;
/* border: red; */
text-align: center;
}
.pending{
cursor: wait;
pointer-events: none;
}
.levels, .newGame, .clearBoard{
/* background-color: red; */
margin: 0.5em;
}
#overlay {
position: fixed; /* Sit on top of the page content */
display: none; /* Hidden by default */
width: 100%; /* Full width (cover the whole page) */
height: 100%; /* Full height (cover the whole page) */
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
cursor: wait;
}
#timer{
font-size: 50px;
}