forked from ptranny/javascript-carnival
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
109 lines (89 loc) · 1.26 KB
/
main.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
body {
font-family: 'Rye', cursive;
background-color: LightPink;
}
hr {
border: 1px solid blueviolet;
width: 50%;
}
hr.small {
width: 10%;
margin-bottom: 30px;
}
h1 {
margin-top: 100px;
margin-bottom: 50px;
font-size: 3em;
text-align: center;
}
.subtitle {
margin: 30px 0px;
}
table {
margin-right: center;
margin-left: center;
margin: 0 auto;
border-spacing: 0;
border-style: solid;
border-width: 3px;
border-color: black;
}
td {
background-color: BurlyWood;
height: 75px;
width: 75px;
border-color: black;
border-style: solid;
border-width: 2px;
}
.container{
text-align: center;
}
.inflate-an-image{
display: inline-block;
width: 400px;
height: 400px;
margin: 5px;
}
.dress-a-parent {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
position: relative;
top: 0;
left: 0;
overflow: unset;
}
canvas {
position: absolute;
left: 380px;
top: 0px;
}
.dress-an-image {
position: absolute;
top: 0px;
left: 0px;
}
.head {
z-index: 2
}
.body {
z-index: 0
}
.shoes {
z-index: 1
}
.mole-hill {
background-image: url('./whack-a-mole/mole.PNG');
background-size: contain;
}
.hide {
visibility: hidden;
}
#head-arrow {
}
#body-arrow {
}
#shoes-arrow {
}