-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
113 lines (75 loc) · 1.47 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
@import url(https://fonts.googleapis.com/css?family=Press+Start+2P);
html {
}
body {
background: url(graphics/background_grass.png);
background-repeat: repeat;
font-size: 14px;
font-family: 'Press Start 2P', cursive;
}
#gameContainer {
z-index: 0;
/*position: absolute;
top: 100px;*/
}
#bars {
position: absolute;
bottom: 30px;
}
#tickCount {
text-align: center;
}
#actionBar {
z-index: 1000;
width: 100%;
position: relative;
display: flex;
}
#actionBar button{
background-repeat: no-repeat;
height: 60px;
width:7.40%;
margin: 1%;
border: 0;
background-size: contain;
position: relative;
box-sizing: border-box;
}
#actionBar button:hover {
}
#actionBar button span{
display: none;
}
#petBnt {
background: url(graphics/actions/action_pet.png);
}
#sleepBnt {
background: url(graphics/actions/action_sleep.png);
}
#toiletBnt {
background: url(graphics/actions/action_toilet.png);
}
#clubbingBnt {
background: url(graphics/actions/action_clubbing.png);
}
#burgerBnt {
background: url(graphics/actions/action_burger.png);
}
#veganBnt {
background: url(graphics/actions/action_corn.png);
}
#beerBnt {
background: url(graphics/actions/action_beer.png);
}
#edamameBnt {
background: url(graphics/actions/action_edamame.png);
}
#sweetsBnt {
background: url(graphics/actions/action_sweets.png);
}
#quinoaBnt {
background: url(graphics/actions/action_quinoa.png);
}
#donerBnt {
background: url(graphics/actions/action_doener.png);
}