forked from toolness/hackasaurus-parable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hints.css
104 lines (102 loc) · 2.94 KB
/
hints.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
.hint {
position: fixed;
text-align: center;
bottom: 40px;
padding: 10px;
left: 0px;
width: 100%;
background: #f0f0f0;
color: black;
border-top: 1px solid black;
border-bottom: 1px solid black;
font-size: 32px;
z-index: 500;
display: none;
pointer-events: none;
}
.hint kbd {
font-family: inherit;
display: inline-block;
color: black;
padding: 2px 3px 8px 3px;
margin-bottom: 1em;
font-size: 25px;
border-radius: 3px;
clear: both;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
background: #B6B6B6; /* Old browsers */
background: rgb(205,205,205); /* Old browsers */
background: -moz-linear-gradient(left,
rgba(205,205,205,1) 0%,
rgba(231,231,231,1) 30%,
rgba(231,231,231,1) 100%
); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top,
color-stop(0%,rgba(205,205,205,1)),
color-stop(30%,rgba(231,231,231,1)),
color-stop(100%,rgba(231,231,231,1))
); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left,
rgba(205,205,205,1) 0%,
rgba(231,231,231,1) 30%,
rgba(231,231,231,1) 100%
); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left,
rgba(205,205,205,1) 0%,
rgba(231,231,231,1) 30%,
rgba(231,231,231,1) 100%
); /* Opera11.10+ */
background: -ms-linear-gradient(left,
rgba(205,205,205,1) 0%,
rgba(231,231,231,1) 30%,
rgba(231,231,231,1) 100%
); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(
startColorstr='#cdcdcd', endColorstr='#e7e7e7',GradientType=1
); /* IE6-9 */
background: linear-gradient(left,
rgba(205,205,205,1) 0%,
rgba(231,231,231,1) 30%,
rgba(231,231,231,1) 100%
); /* W3C */
}
.hint kbd span {
display: block;
padding: 7px 15px 5px 15px;
border-radius: 2px;
background: #CCC; /* Old browsers */
background: rgb(231,231,231); /* Old browsers */
background: -moz-linear-gradient(left,
rgba(231,231,231,1) 0%,
rgba(231,231,231,1) 70%,
rgba(205,205,205,1) 100%
); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top,
color-stop(0%,rgba(231,231,231,1)),
color-stop(70%,rgba(231,231,231,1)),
color-stop(100%,rgba(205,205,205,1))
); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left,
rgba(231,231,231,1) 0%,
rgba(231,231,231,1) 70%,
rgba(205,205,205,1) 100%
); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left,
rgba(231,231,231,1) 0%,
rgba(231,231,231,1) 70%,
rgba(205,205,205,1) 100%
); /* Opera11.10+ */
background: -ms-linear-gradient(left,
rgba(231,231,231,1) 0%,
rgba(231,231,231,1) 70%,
rgba(205,205,205,1) 100%
); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(
startColorstr='#e7e7e7', endColorstr='#cdcdcd',GradientType=1
); /* IE6-9 */
background: linear-gradient(left,
rgba(231,231,231,1) 0%,
rgba(231,231,231,1) 70%,
rgba(205,205,205,1) 100%
); /* W3C */
}