-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (160 loc) · 4.07 KB
/
Copy pathstyle.css
File metadata and controls
162 lines (160 loc) · 4.07 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
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
152
153
154
155
156
157
158
159
160
161
162
*{
box-sizing: border-box;
}
body{
font-family: Georgia;
font-style: italic;
font-size: 2em;
font-weight: lighter;
color:#624319;
background: #FAF8F6;
}
a{
color:rgba(255, 63, 0, 1);
text-decoration: none;
font-weight: bold;
}
a:hover{
color:rgba(255, 171, 0, 1);
}
#wrapper{
margin-top: 1em;
width: 100%;
background: #FFFAE9;
padding: 2em 1em 1em 1em;
box-shadow: 0 2px 2px #E8E4D4;
overflow-x: scroll;
overflow-y: visible;
}
#equation{
width:auto;
white-space: nowrap;
overflow-y: visible;
}
.faded{
font-size: 0.7em;
opacity: 0.6;
}
.eq{
margin-right: 6px;
position: relative;
display: inline-block;
}
.eq.spacer{
width:100px;
}
.floatstop{
clear:both;
}
#score{
font-size:2.2em;
padding:0.5em;
}
.coeff{
border:1px solid #dc9;
border-radius:3px;
padding:0 3px;
cursor:pointer;
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
-moz-user-select: none; /* mozilla browsers */
-khtml-user-select: none; /* webkit (konqueror) browsers */
-ms-user-select: none; /* IE10+ */
}
.coeff:hover{
background: #dc9;
}
.popout,.tip{
position: absolute;
left:28px;
top:-50px;
font-size: 0.8em;
padding: 2px 3px;
background: #FFFAE9;
border-radius: 3px;
border:1px solid #9bd;
box-shadow: 0 2px 3px #EFE3C0;
display: none;
z-index:20;
}
.tip{
font-size: 0.7em;
min-width: 200px;
white-space: nowrap;
left: 0;
padding: 0 2px;
}
.popout.disabled{
opacity: 0.5;
}
#achievements{
padding:1em;
display: none;
}
#achievements .row{
float:left;
clear:left;
margin-top:10px;
}
.achievement{
float: left;
width: 40px;
height: 40px;
background: #fff9e8; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #fff9e8 1%, #ffe07f 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#fff9e8), color-stop(100%,#ffe07f)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffe07f 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffe07f 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffe07f 100%); /* IE10+ */
background: radial-gradient(ellipse at center, #fff9e8 1%,#ffe07f 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff9e8', endColorstr='#ffe07f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
text-align: center;
line-height: 40px;
font-size: 0.6em;
border-radius: 6px;
box-shadow: 0 2px 3px #EFE3C0;
border:1px solid #dc9;
position: relative;
cursor:pointer;
margin-right:10px;
font-style:normal;
}
#ach-upgrade .achievement{
background: #fff9e8; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #fff9e8 1%, #ffb87f 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#fff9e8), color-stop(100%,#ffb87f)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffb87f 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffb87f 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #fff9e8 1%,#ffb87f 100%); /* IE10+ */
background: radial-gradient(ellipse at center, #fff9e8 1%,#ffb87f 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff9e8', endColorstr='#ffb87f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
h1{
font-size: 0.8em;
font-weight: lighter;
margin: 0;
color:#937752;
}
#reset{
position: fixed;
right: 1em;
bottom: 1em;
font-size: 0.5em;
border-radius: 5px;
border: 1px solid #937752;
background: #937752;
color: #EFE3C0;
}
#footer{
font-size:0.5em;
position: fixed;
bottom: 0.5em;
left: 0.5em;
opacity: 0.3;
transition: opacity 0.3s;
-webkit-transition: opacity 0.3s; /* Safari */
}
#footer:hover{
opacity: 1.0;
transition: opacity 0.3s;
-webkit-transition: opacity 0.3s; /* Safari */
}