forked from NisargUpadhyayIITJ/N-Queens-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (64 loc) · 1.36 KB
/
style.css
File metadata and controls
66 lines (64 loc) · 1.36 KB
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
*{
box-sizing: border-box;
}
body{
background-color: #bdbbbb;
}
.logo-text {
font-family: 'Impact', sans-serif; /* Impact is a close approximation */
font-weight: bold;
font-size: 60px; /* Adjust based on your needs */
color: #FFCC00; /* Yellow text color */
text-shadow:
-1px -1px 0 #FF0000, /* Red shadow */
1px -1px 0 #FF0000,
-1px 1px 0 #FF0000,
1px 1px 0 #FF0000,
3px 3px 0 #FF0000; /* Further red shadow for a thicker outline */
text-align: center;
}
.input-box{
text-align: center;
}
.box{
height: 30px;
width: 30px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
background-color: #FFCC00;
border-style: solid;
border-width: 1px;
}
.flex{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.table{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
border: #FF0000;
}
.table-heading{
background-color: #011627;
color: #fdfffc;
text-align: center;
margin-top: 2px;
margin-bottom: 0px;
}
.main-heading{
background-color: #011627;
color: #fdfffc;
text-align: center;
margin-top: 25px;
margin-bottom: 25px;
}
#nValue{
width: 50px;
}