-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhaacky.css
More file actions
164 lines (145 loc) · 2.71 KB
/
haacky.css
File metadata and controls
164 lines (145 loc) · 2.71 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
body {
background: #A0B0E0;
}
#intro {
font-size: 40px;
font-family: "HelveticaNeue-Light", helvetica;
color: white;
-webkit-font-smoothing: antialiased;
text-align: center;
visibility: hidden;
text-shadow: rgb(A,0B0,E0) 1px 1px,
rgb(1, 139, 81) 2px 2px,
rgb(1, 139, 81) 3px 3px,
rgb(1, 139, 81) 4px 4px,
rgb(1, 139, 81) 5px 5px,
rgb(1, 139, 81) 6px 6px,
rgb(1, 139, 81) 7px 7px,
rgb(1, 139, 81) 8px 8px,
rgb(1, 139, 81) 9px 9px,
rgb(1, 139, 81) 10px 10px,
rgb(1, 139, 81) 11px 11px,
rgb(1, 139, 81) 12px 12px,
rgb(1, 139, 81) 13px 13px,
rgb(1, 139, 81) 14px 14px,
rgb(1, 139, 81) 15px 15px,
rgb(1, 139, 81) 16px 16px,
rgb(1, 139, 81) 17px 17px,
rgb(1, 139, 81) 18px 18px,
rgb(1, 139, 81) 19px 19px;
height: 100%;
width: 100%;
font-size: 40px;
text-align: center;
}
.slideUp{
animation-name: slideUp;
-webkit-animation-name: slideUp;
animation-duration: 1s;
-webkit-animation-duration: 1s;
animation-timing-function: ease;
-webkit-animation-timing-function: ease;
visibility: visible !important;
}
@keyframes slideUp {
0% {
transform: translateY(100%);
}
50%{
transform: translateY(-8%);
}
65%{
transform: translateY(4%);
}
80%{
transform: translateY(-4%);
}
95%{
transform: translateY(2%);
}
100% {
transform: translateY(0%);
}
}
@-webkit-keyframes slideUp {
0% {
-webkit-transform: translateY(100%);
}
50%{
-webkit-transform: translateY(-8%);
}
65%{
-webkit-transform: translateY(4%);
}
80%{
-webkit-transform: translateY(-4%);
}
95%{
-webkit-transform: translateY(2%);
}
100% {
-webkit-transform: translateY(0%);
}
}
#button {
border: 3px solid #fff;
color: #fff;
position:relative;
display: inline-block;
top:50%;
left:50%;
margin:50px 0 0 -95px;
height:75px;
width:200px;
font-size:30px;
font-family:"HelveticaNeue-Light",helvetica;
background:rgb(1, 139, 81);
cursor:pointer;
box-shadow: 2px 5px 10px #777;
}
#button:hover {
color:#999;
}
.fadeIn{
animation-name: fadeIn;
-webkit-animation-name: fadeIn;
animation-duration: 2.5s;
-webkit-animation-duration: 2.5s;
animation-timing-function: ease-in-out;
-webkit-animation-timing-function: ease-in-out;
visibility: visible !important;
}
@keyframes fadeIn {
0% {
transform: scale(0);
opacity: 0.0;
}
60% {
transform: scale(1.1);
}
80% {
transform: scale(0.9);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
-webkit-transform: scale(0);
opacity: 0.0;
}
60% {
-webkit-transform: scale(1.1);
}
80% {
-webkit-transform: scale(0.9);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
opacity: 1;
}
}