Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/2048/style/ai.css
4626 views
1
.controls {
2
margin-top: 1em;
3
padding: 0.5em 0;
4
overflow: auto;
5
}
6
7
.controls button {
8
/*display: inline-block;*/
9
background: #8f7a66;
10
border: 0;
11
border-radius: 3px;
12
padding: 0 20px;
13
color: #f9f6f2;
14
height: 40px;
15
line-height: 42px;
16
font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
17
font-size: 18px;
18
font-weight: bold;
19
cursor: pointer;
20
}
21
22
.controls button:hover {
23
background: #ad957f;
24
}
25
26
.ai-button, #feedback-container {
27
line-height: 40px;
28
font-size: 36px;
29
}
30
31
#run-button-container {
32
float: right;
33
}
34
35
#hint-button-container, #feedback-container {
36
float: left;
37
}
38
39
#feedback-container {
40
background: #8f7a66;
41
color: #f9f6f2;
42
margin-left: 1em;
43
font-weight: bold;
44
}
45