-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (72 loc) · 1.41 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
body {
margin: 0px;
background-color: thistle;
}
.container {
display: flex;
justify-content: center;
}
h1 {
font-family: verdana;
font-size: 3em;
letter-spacing: 0.5vw;
color: rgb(156, 119, 90);
border-bottom: 2px solid rgb(224, 147, 151);
border-right: 2px solid rgb(224, 147, 151);;
text-align: center;
width: 35%;
box-shadow: 4px 4px 5px #888888;
margin: auto;
background-color: pink;
}
img {
width: 90%;
height: 90%;
margin: 10px;
border-radius: 8px;
transition: transform 1s;
}
img:hover {
transform: scale(1.5);
border: 6px solid rgb(221, 151, 98);
}
.meow1 {
transition: transform 1s ease-in-out;
}
.meow1:hover {
transform: translate(50%, 50%);
}
.meow2 {
transition: transform 1s ease-in-out;
}
.meow2:hover {
transform: translateY(50%);
}
.meow3 {
transition: transform 1s ease-in-out;
}
.meow3:hover {
transform: translate(-50%, 50%);
}
.meow4 {
transition: transform 1s ease-in-out;
}
.meow4:hover {
transform: translate(50%, -50%);
}
.meow5 {
transition: transform 1s ease-in-out;
}
.meow5:hover {
transform: translateY(-50%);
}
.meow6 {
transition: transform 1s ease-in-out;
}
.meow6:hover {
transform: translate(-50%, -50%);
}
p {
text-align: center;
color: rgb(255, 255, 255);
}