-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
82 lines (69 loc) · 1.42 KB
/
style.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
body{
background-color: black;
}
.width-strech{
width: 100%;
}
#content {
width: 1139px ;
position: relative;
margin-left: auto ;
margin-right: auto ;
}
#cursor{
vertical-align: top;
}
#text-entry{
display: inline;
}
#question-input{
background-color: #FF1F1F;
color: yellow;
vertical-align: middle;
}
#answer-frame{
display: none;
position: absolute;
top: 100px;
left: 341px;
width: 457px;
}
#answer{
color: yellow;
}
#answer{
position: absolute;
top: 293px;
left: 44px;
text-align: center;
width: 366px;
}
/* BLINK */
.blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
/* Zoom */
.small-zoom {
-webkit-transform:scale(0); /*Webkit: Scale down image to 0.8x original size*/
-moz-transform:scale(0); /*Mozilla scale version*/
-o-transform:scale(0); /*Opera scale version*/
}
.full-zoom {
-webkit-transform:scale(1.0); /*Webkit: Scale up image to 1.2x original size*/
-moz-transform:scale(1.0); /*Mozilla scale version*/
-o-transform:scale(1.0); /*Opera scale version*/
-webkit-transition-duration: 4s; /*Webkit: Animation duration*/
-moz-transition-duration: 4s; /*Mozilla duration version*/
-o-transition-duration: 4s; /*Opera duration version*/
}