-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (115 loc) · 2.43 KB
/
style.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
html, body {
height: 100%;
width: 100%;
}
body{
background-image: url("bg.png");
}
div.starting {
display: none;
}
div.shirt {
position: absolute;
background-image: url(shirt1.png);
background-size: 50px 50px;
top: 230;
display: none;
}
div.base{
position: absolute;
width: 50px;
height: 50px;
background-image: url(shirt1.png);
background-size: 50px 50px;
top: 100px;
}
div.shirtbutton {
position: absolute;
top: 400px;
right: 300px;
border: 3px solid #fdd92d;
background-color: #fdd92d;
border-radius: 12px;
font-size: 20px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 4px;
}
div.shirtbutton:hover {
background-color:#B69B0D;
border:2px solid #ebd459;
padding: 4px;
transition: 0.2s;
}
div.basebutton:hover {
background-color:#B69B0D;
border:2px solid #ebd459;
padding: 4px;
transition: 0.2s;
}
div.shoebutton:hover {
background-color:#B69B0D;
border:2px solid #ebd459;
padding: 4px;
transition: 0.2s;
}
div.dressbutton:hover {
background-color:#B69B0D;
border:2px solid #ebd459;
padding: 4px;
transition: 0.2s;
}
div.accessorybutton:hover {
background-color:#B69B0D;
border:2px solid #ebd459;
padding: 4px;
transition: 0.2s;
}
div.basebutton{
position: absolute;
top: 500px;
left: 400px;
border: 3px solid #fdd92d;
background-color: #fdd92d;
border-radius: 12px;
font-size: 20px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 4px;
}
div.shoebutton{
position: absolute;
top: 700px;
left: 400px;
border: 3px solid #fdd92d;
background-color: #fdd92d;
border-radius: 12px;
font-size: 20px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 4px;
}
div.dressbutton{
position: absolute;
top: 600px;
right: 300px;
border: 3px solid #fdd92d;
background-color: #fdd92d;
border-radius: 12px;
font-size: 20px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 4px;
}
div.accessorybutton{
position: absolute;
top: 250px;
left: 400px;
border: 3px solid #fdd92d;
background-color: #fdd92d;
border-radius: 12px;
font-size: 20px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
padding: 4px;
}
div.under{
position: absolute;
top: 180px;
left: 375px;
}