-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (70 loc) · 1.27 KB
/
style.css
File metadata and controls
70 lines (70 loc) · 1.27 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
67
68
69
70
#mainSpot
{
display:none;
margin-left:auto;
margin-right:auto;
margin-top:50px;
width:1150px;
height:650px;
background-color: black;
}
#maze
{
border-style: solid;
border-color: white;
border-width: 1px;
width:930px;
height:469px;
margin-left:auto;
margin-right:auto;
}
#textBox
{
border-style: solid;
border-color: white;
border-width: 1px;
width:930px;
height:469px;
margin-left:auto;
margin-right:auto;
}
.row
{
margin-left:auto;
margin-right:auto;
border-bottom: 1px solid white;
width:929px;
height:117px;
}
#maze .row:last-child
{
border-bottom: none;
}
.column
{
background-color: white;
width:1px;
height:116px;
}
.square
{
border-right: 1px solid white;
/* background-color: black; */
width:116px;
height:116px;
padding:0px;
margin:0px;
background-image: url("img/square_background.png");
color: white;
font-size: 75px;
font-family: 'Open Sans', sans-serif;
}
.row .square:last-child
{
border-right: none;
}
.shadow {
-webkit-filter: drop-shadow( 0px 0px 15px #ba89f1);
filter: drop-shadow( 0px 0px 15px #ba89f1);
/* Similar syntax to box-shadow */
}