-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (93 loc) · 1.88 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (93 loc) · 1.88 KB
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
body {
background-color: #f0f4c3;
font-family: 'Segoe UI', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.game-container {
background-color: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
border: 3px solid #5d4037;
text-align: center;
width: 420px;
}
h1 {
color: #3e2723;
font-size: 1.4rem;
margin: 0 0 10px 0;
}
.instructions {
color: #5d4037;
font-size: 0.9rem;
margin-bottom: 20px;
}
.status-bar {
background-color: #efebe9;
padding: 8px;
border-radius: 6px;
font-size: 0.95rem;
color: #4e342e;
margin-bottom: 20px;
border: 1px solid #d7ccc8;
}
.farm-scene {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 20px;
}
.clickable-element {
background-color: #fff8e1;
border: 2px solid #ffe082;
border-radius: 8px;
padding: 20px 10px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
flex-direction: column;
align-items: center;
}
.clickable-element:hover {
transform: translateY(-2px);
background-color: #fff3e0;
border-color: #ffb74d;
}
/* Estilo visual para quando o caminho/objeto está bloqueado */
.clickable-element.blocked {
background-color: #e0e0e0 !important;
border-color: #bdbdbd !important;
opacity: 0.6;
cursor: not-allowed;
}
.emoji {
font-size: 2.5rem;
margin-bottom: 8px;
}
.label {
font-weight: bold;
font-size: 0.85rem;
color: #5d4037;
}
#reset-btn {
background-color: #d84315;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
#reset-btn:hover {
background-color: #bf360c;
}
#message {
margin-top: 15px;
font-size: 1rem;
font-weight: bold;
height: 25px;
}