-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclicker.css
114 lines (103 loc) · 1.57 KB
/
clicker.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
html, body {
padding: 0;
margin: 0;
}
body {
background-color: #ddddcc;
}
button {
margin: 0.25em;
padding: 0.4em;
font-family: inherit;
font-size: inherit;
cursor: pointer;
box-shadow: 0 0.2em 0.2em rgba(0,0,0,0.07);
}
button:disabled {
cursor: not-allowed;
}
dt, dd {
display: inline-block;
}
dt {
min-width: 6em;
}
dd {
margin: 0 0 0 1em;
min-width: 5em;
text-align: right;
}
section {
padding: 1em;
border-bottom: solid 1px rgba(0,0,0,0.1);
}
footer {
font-size: 80%;
opacity: 0.8;
padding: 1em;
text-align: center;
}
main {
display: flex;
padding: 0;
margin: 0 auto;
max-width: 1200px;
}
article {
flex-grow: 1;
width: 50%;
min-height: 40em;
border-left: solid 1px rgba(0,0,0,0.1);
background-color: #eeeedd;
margin: 0;
}
main > article:first-child {
border-left: 0;
}
article > header {
min-height: 1em;
width: 100%;
/* background: rgba(0,0,0, 0.05); */
}
article > header h1 {
margin: 0.2em 1em;
}
.nothing {
border: dashed 1px rgba(0,0,0,0.3);
padding: 1em;
color: rgba(0,0,0,0.4);
}
.locked {
opacity: 0;
width: 0;
height: 0;
padding: 0;
margin: 0;
overflow: hidden;
transition-timing-function: ease-in-out;
transition: all 0.5s, opacity 3s;
transform: scale(0);
}
.unlocked {
opacity: 1;
transform: scale(1);
transition-timing-function: ease-in-out;
transition: all 0.5s, opacity 3s;
}
.actions {
user-select: none;
}
.actions button:focus {
border: solid 3px #4499ff;
box-shadow: none;
}
.actions button:active {
border: solid 3px #99ffff;
}
.edit:hover {
color: #44aaaa;
cursor: help;
}
.upgrade button {
min-width: 13em;
}