-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathescape.css
75 lines (66 loc) · 1.96 KB
/
escape.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
.scramble-me {
margin-right: 1em;
}
.scramble-me button {
background: rgb(243, 186, 81);
background-image: -webkit-linear-gradient(top, rgb(243, 186, 81), rgb(219, 150, 22));
background-image: -moz-linear-gradient(top, rgb(243, 186, 81), rgb(219, 150, 22));
background-image: -ms-linear-gradient(top, rgb(243, 186, 81), rgb(219, 150, 22));
background-image: -o-linear-gradient(top, rgb(243, 186, 81), rgb(219, 150, 22));
background-image: -webkit-gradient(to bottom, rgb(243, 186, 81), rgb(219, 150, 22));
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
color: #ffffff;
font-family: sans-serif;
font-size: 20px;
font-weight: 100;
padding: 10px 20px;
-webkit-box-shadow: 1px 1px 5px 0 #000000;
-moz-box-shadow: 1px 1px 5px 0 #000000;
box-shadow: 1px 1px 5px 0 #000000;
text-shadow: 1px 1px 5px #000000;
border: solid rgb(243, 186, 81) 1px;
text-decoration: none;
display: inline-block;
cursor: pointer;
text-align: center;
}
.scramble-me button:hover {
border: solid rgb(243, 186, 81) 1px;
background: rgb(219, 150, 22);
background-image: -webkit-linear-gradient(top, rgb(219, 150, 22), rgb(243, 186, 81));
background-image: -moz-linear-gradient(top, rgb(219, 150, 22), rgb(243, 186, 81));
background-image: -ms-linear-gradient(top, rgb(219, 150, 22), rgb(243, 186, 81));
background-image: -o-linear-gradient(top, rgb(219, 150, 22), rgb(243, 186, 81));
background-image: -webkit-gradient(to bottom, rgb(219, 150, 22), rgb(243, 186, 81));
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
text-decoration: none;
}
.outer-content p:first-of-type {
margin-top: 0;
}
.cover-wrapper {
display: none;
}
.cover-wrapper {
position: fixed;
z-index: 10000;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: white;
margin: 0;
padding: 2em;
overflow-y: auto;
}
.cover-wrapper.visible {
display: block;
}
.exit-scramble {
color: tan;
font-weight: bold;
}