blob: 2d823807791de98250968ddffca091703ba84c59 (
plain)
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
|
body {
min-height: 3000px;
}
.element {
width: 200px;
height: 200px;
background-color: #fe8;
position: absolute;
z-index: 6;
}
.target {
width: 300px;
height: 50px;
margin: 0 35%;
background-color: #4e9;
}
.container {
height: 600px;
overflow: scroll;
width: 600px;
border: 20px solid #CCC;
margin-top: 100px;
}
body {
padding: 15px;
}
body > .container {
margin: 0 auto;
}
.pad {
height: 400px;
width: 100px;
}
.instructions {
width: 100%;
text-align: center;
font-size: 24px;
padding: 15px;
background-color: rgba(210, 180, 140, 0.4);
margin: -15px -15px 0 -15px;
}
|