-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_style.css
81 lines (75 loc) · 1.07 KB
/
index_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
body {
background-color: #2e0f6d;
color:#ffffff;
font-family: "Franklin Gothic Medium";
}
h1{
text-align: center;
position: relative;
}
h1{
transition:1s;
}
}
h1:hover{
position:relative;
}
h1:hover:after{
content:url("images/theLadiesMan.jpg");
display:block;
position:absolute;
left:350px;
top:56px;
border-radius: 25px;
}
@keyframes grow{
100%{transform:scale(1.3);}
}
li img:hover{
animation-name: grow;
animation-duration: 1s;
animation-fill-mode: forwards;
}
a{
text-decoration: none;
color:#cc0099;
}
img {
height: 350px;
}
td:hover img {
display: block;
}
td img{
display: none;
}
tv img{
display: none;
}
tv:hover img{
display: table-cell;
}
/*td {*/
/*display: flex;*/
/*}*/
@keyframes bounce{
0% {
transform: scale(1)
}
100% {
transform: scale(1.4)
}
}
a{
transition:1s;
}
a:hover{
color:#e8f442;
font-size: larger;
animation: bounce .5s 2;
}
.flexbox{
display:flex;
justify-content: center;
flex-direction: row;
}