-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
128 lines (117 loc) · 2.42 KB
/
stylesheet.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
body, html {
text-align: center;
}
#testblock {
width: 5%;
height: 10%;
background-color: black;
}
input[type="submit"] {
background: tomato;
color: white;
border: 0;
padding: 10px;
font-size: 18px;
}
#instructions {
font-family: 'Lobster', cursive;
position: absolute;
top: 60%;
width: 100%;
height: 170px;
margin-top: -150px;
font-size: 3em;
color: white;
text-align: center;
padding-top: 30px;
background-color: rgba(0, 0, 0, 0.8)
}
#fade_box {
position: absolute;
left: 0;
top: 0;
background-color: rgba(255, 255, 255,0.6);
width: 100%;
height: 100%;
z-index: 999;
}
#blur_box{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
filter:blur(2px);
-o-filter:blur(2px);
-ms-filter:blur(2px);
-moz-filter:blur(2px);
-webkit-filter:blur(2px);
}
#result {
height: 700px;
width: 60%;
margin-left: auto;
margin-right: auto;
display: none;
margin-top: 10px;
}
#res_box {
background-color: tomato;
font-size: 2em;
color: white;
}
#center {
width: 100%;
margin: 0, auto;
}
#submit {
width: 100px;
/*margin-left: 50%;*/
}
#space-invader{
filter:blur(2px);
-o-filter:blur(2px);
-ms-filter:blur(2px);
-moz-filter:blur(2px);
-webkit-filter:blur(2px);
position: relative;
margin-top: 50;
margin-left: auto;
margin-right: auto;
box-shadow:
0 0 0 1em lightgrey,
0 1em 0 1em lightgrey,
-2.5em 1.5em 0 .5em lightgrey,
2.5em 1.5em 0 .5em lightgrey,
-3em -3em 0 0 lightgrey,
3em -3em 0 0 lightgrey,
-2em -2em 0 0 lightgrey,
2em -2em 0 0 lightgrey,
-3em -1em 0 0 lightgrey,
-2em -1em 0 0 lightgrey,
2em -1em 0 0 lightgrey,
3em -1em 0 0 lightgrey,
-4em 0 0 0 lightgrey,
-3em 0 0 0 lightgrey,
3em 0 0 0 lightgrey,
4em 0 0 0 lightgrey,
-5em 1em 0 0 lightgrey,
-4em 1em 0 0 lightgrey,
4em 1em 0 0 lightgrey,
5em 1em 0 0 lightgrey,
-5em 2em 0 0 lightgrey,
5em 2em 0 0 lightgrey,
-5em 3em 0 0 lightgrey,
-3em 3em 0 0 lightgrey,
3em 3em 0 0 lightgrey,
5em 3em 0 0 lightgrey,
-2em 4em 0 0 lightgrey,
-1em 4em 0 0 lightgrey,
1em 4em 0 0 lightgrey,
2em 4em 0 0 lightgrey;
background: lightgrey;
width: 1em;
height: 1em;
overflow: hidden;
margin: 50px 0 70px 65px;
}