-
Notifications
You must be signed in to change notification settings - Fork 0
/
index9.css
59 lines (58 loc) · 899 Bytes
/
index9.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
body{
background: url("Images/background7.jpg") no-repeat center center fixed;
background-size: 100%;
font-family: 'Tangerine', cursive;
margin: 0;
}
div[class=nav]{
background: black;
width: 100%;
height: 40px;
}
div[class=navi]{
height: inherit;
float: left;
padding-left: 50px;
}
a{
height: inherit;
}
button{
height: inherit;
background: none;
color: white;
border: none;
}
div[class=navi2]{
height: inherit;
float: right;
padding-right: 50px;
}
img{
height: 400px;
width: 100%;
margin: 0;
box-shadow: 5px 4px 4px #2f3e50;
}
div[class="inner2"]{
width:70%;
margin: 0 auto;
}
button:hover{
background: steelblue;
color: white;
}
p{
color: white;
font-size: 40px;
}
img:hover{
animation: my 2s 1;
animation-fill-mode: forwards;
}
@keyframes my{
100%{
transform: scaleX(1.2) scaleY(1.2);
opacity: 0;
}
}