forked from ptranny/javascript-carnival
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
68 lines (56 loc) · 773 Bytes
/
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
body {
font-family: 'Rye', cursive;
background-color: LightPink;
}
h1 {
margin-top: 100px;
margin-bottom: 50px;
font-size: 3em;
text-align: center;
}
table {
margin-right: center;
margin-left: center;
margin: 0 auto;
}
td {
background-color: BurlyWood;
height: 75px;
width: 75px;
}
.moleSize {
width: 100%;
height: 100%;
}
.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;
}
.dress-an-image {
position: absolute;
top: 0px;
left: 0px;
}
.head {
z-index: 2
}
.body {
z-index: 0
}
.shoes {
z-index: 1
}