-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (93 loc) · 1.58 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
#mainSpot
{
display:none;
margin-left:auto;
margin-right:auto;
margin-top:50px;
width:1150px;
height:650px;
background-color: black;
}
#game
{
width:930px;
height:469px;
margin-left:auto;
margin-right:auto;
}
#textBox
{
border-style: solid;
border-color: black;
border-width: 1px;
width:930px;
height:469px;
margin-left:auto;
margin-right:auto;
}
#progress
{
margin-left:auto;
margin-right:auto;
width:929px;
height:117px;
}
#matrix
{
margin-left:auto;
margin-right:auto;
width:390px;
height:390px;
margin-top: 10px;
}
#answer
{
margin-top:10px;
font-family: 'Nanum Gothic Coding';
font-size:20px;
width:100px;
text-align: center;
background-color:black;
border-color:#4a235a;
color:#b47fc8 !important;
border-width: 1px;
margin-left:auto;
margin-right:auto;
}
#answer:focus
{
color:#b47fc8 !important;
caret-color: #b47fc8;
}
.square
{
border-style: solid;
border-color: black;
border-width: 1px;
text-align: center;
color:white;
font-size:72px;
position:fixed;
width:118px;
height:118px;
margin:5px;
background-color:#4a235a;
}
#frameRow
{
width:386px;
height:126px;
position:fixed;
border-style: solid;
border-color: red;
border-width: 2px;
}
#frameColumn
{
width:126px;
height:386px;
position:fixed;
border-style: solid;
border-color: red;
border-width: 2px;
}