-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (93 loc) · 1.94 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
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
.dropdown {
margin: 20px;
width: 50%;
padding: 10px;
font-family: 'Zilla Slab', sans-serif;
font-size: 40px;
text-shadow: 2px 2px #ff0000;
color: #ffee00;
position: fixed;
display: inline-block;
border-radius:50%;
-webkit-animation: bounce .8s infinite alternate;
-moz-animation: bounce .8s infinite alternate;
animation: bounce .8s infinite alternate;
}
@-webkit-keyframes bounce {
to { -webkit-transform: scale(1.2); }
}
@-moz-keyframes bounce {
to { -moz-transform: scale(1.2); }
}
@keyframes bounce {
to { transform: scale(1.2); }
}
.OpenCall{
font-family: 'Zilla Slab', serif;
font-size: 40px;
text-shadow: 2px 2px #ff0000;
color: #ffee00;
position: fixed;
display: inline-block;
border-radius:50%;
-webkit-animation: bounce .7s infinite alternate;
-moz-animation: bounce .2s infinite alternate;
animation: bounce .7s infinite alternate;
text-decoration: none;
}
@-webkit-keyframes bounce {
to { -webkit-transform: scale(1.1); }
}
@-moz-keyframes bounce {
to { -moz-transform: scale(1.1); }
}
@keyframes bounce {
to { transform: scale(1.1); }
}
canvas{
position: absolute;
top: 0;
display: block;
margin-left: -8px;
z-index: -1;
}
li {
line-height: 3;
white-space: nowrap;
}
html, body{
background-color: #ffee00;
overflow: hidden;
}
#aboutpage {
font-size: 22px;
font-family: 'Zilla Slab', serif;
background-color: #f00;
color: #fff;
text-decoration: none;
z-index: 1;
padding: 1rem;
position: absolute;
left: -5px;
top: -5px;
}
#aboutpage:hover {
color: #0011ff;
background-color: #009c03;
}
.dropdown a:hover {
color: #0011ff;
}
.dropdown li:hover {
color: #009c03;
}
img {
max-width: 8rem;
filter: drop-shadow(0px 0px 10px yellow);
}
#fmq1 {
max-width: 7.8rem ;
}
img:hover {
filter: drop-shadow(0px 0px 20px teal) invert(75%);
}