-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (96 loc) · 1.78 KB
/
styles.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
html, body{
-webkit-font-smoothing:antialiased;
font-family: "Comic Sans MS", sans-serif;
line-height:1.4;
margin:0 auto;
max-width:860px;
height: 100%;
}
.center{
text-align: center;
}
.intro{
font-size:4em;
}
.max {
display: block;
width: 860px;
word-wrap: break-word;
}
.bg1{
background-image: url("https://i.imgur.com/YUPql5N.gif");
}
.bg2{
background-image: url("https://i.imgur.com/SHZe50s.gif");
}
a{
color: #000000;
}
#wm-ipp #wm-ipp-inside {
margin: 0 6px;
border:5px solid #000;
border-top:none;
background-color:rgba(255,255,255,0.9);
-moz-box-shadow:1px 1px 4px #333;
-webkit-box-shadow:1px 1px 4px #333;
box-shadow:1px 1px 4px #333;
border-radius:0 0 8px 8px;
}
.container {
width: 1000px;
height: 100%;
border: 2px solid black;
box-sizing: border-box;
}
h1, h2, h3, p, a {
color: yellow;
}
span.line{
color: red;
}
.cursor{
cursor: url(https://i.imgur.com/RUE567I.gif), auto;
}
/* @group Blink */
.blink {
-webkit-animation: blink .75s linear infinite;
-moz-animation: blink .75s linear infinite;
-ms-animation: blink .75s linear infinite;
-o-animation: blink .75s linear infinite;
animation: blink .75s linear infinite;
}
@-webkit-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-moz-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-ms-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-o-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
/* @end */
/*for footer*/
#main{
min-height: 90vh;
}