-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
151 lines (151 loc) · 3.19 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
div.block {
width: 50px;
height: 50px;
display: inline-block;
background-size: contain;
color: #fff;
}
div#map {
background: #8cbffb;
line-height: 0;
margin: 0 auto;
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.8);
position: relative;
margin-top: 7px;
}
.red {
background-color: #E74C3C;
border-bottom: 5px solid #BD3E31;
text-shadow: 0px -2px #BD3E31;
}
.green {
background-color: #82BF56;
border-bottom: 5px solid #669644;
text-shadow: 0px -2px #669644;
}
.yellow {
background-color: #F2CF66;
border-bottom: 5px solid #D1B358;
text-shadow: 0px -2px #D1B358;
}
.difficulty {
text-align: center;
margin-top: 50px;
}
.block:hover {
-webkit-box-shadow: 0px 0px 1px 2px #ffffff;
-moz-box-shadow: 0px 0px 1px 2px #ffffff;
box-shadow: 0px 0px 1px 2px #ffffff;
}
.inventory-container {
position: fixed;
right: 0;
width: 60px;
top: 0;
}
.tools-container {
position: fixed;
top: 0;
left: 0;
}
.reset img {
-webkit-animation: spin 0.2s ease-in-out;
-moz-animation: spin 0.2s ease-in-out;
animation: spin 0.2s ease-in-out;
animation-fill-mode: forwards;
}
@-moz-keyframes spin {
100% {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.buttons-container {
position: fixed;
bottom: 0;
left: 0;
}
.bgholder > div > img {
width: 100%;
padding: 7px;
}
.bgholder {
cursor: pointer;
}
.bgholder > div {
display: inline-block;
width: 60px;
height: 60px;
background-size: contain;
background-image: url('https://itc.yananas.com/git/minecraft/images/slot.png');
background-size: contain;
}
.bgholder > .active {
box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .5);
}
div#buttons {
background: #c1ffc3;
padding: 20px;
}
.hello {
position: fixed;
background: rgba(255, 255, 255, 0.88);
z-index: 10;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.animate {
transition: all 0.1s;
-webkit-transition: all 0.1s;
}
.action-button:active,
.selected {
transform: translate(0px, 5px);
-webkit-transform: translate(0px, 5px);
border-bottom: 1px solid;
}
.action-button {
outline: none;
position: relative;
padding: 10px 40px;
border-radius: 10px;
font-family: 'Pacifico', cursive;
font-size: 25px;
color: #FFF;
text-decoration: none;
}
.blue {
background-color: #3498DB;
border-bottom: 5px solid #2980B9;
text-shadow: 0px -2px #2980B9;
}
.logoHolder {
width: 80%;
margin: 0 auto;
}
.logoHolder img {
width: 100%;
}
.start {
text-align: center;
}
.inv span {
font-size: 1.5em;
color: #fff;
text-align: right;
display: block;
margin-top: -16px;
margin-right: 8px;
}