-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
111 lines (100 loc) · 2.09 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
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;900&family=Nerko+One&family=Ubuntu:wght@300&family=Zen+Dots&display=swap');
* {
margin: 0;
padding: 0;
}
body {
}
ul {
list-style-type: none;
}
a:link {
text-decoration: none;
color: black;
}
a:hover {
color: grey;
cursor: pointer;
}
#title {
font-family: 'Nerko One', cursive;
font-size: 70px;
padding: 10px;
color:rgb(219, 78, 78);
}
.item {
font-family: 'Montserrat', sans-serif;
font-size: 30px;
margin-left: 30px;
padding: 20px;
}
.img {
border: 1px solid #ddd;
border-radius: 4px;
padding: 5px;
width: 200px;
height: auto;
display: flex;
float: left;
margin-right: 20px;
}
.para1 {
margin-left: 30px;
margin-top: 5px;
font-family: 'Ubuntu', sans-serif;
font-size: 25px;
border-color: #edfdfb;
float: right;
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.waviy {
position: relative;
-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
font-size: 30px;
margin-left: 30%;
margin-bottom: 20px;
}
.waviy span {
font-family: 'Alfa Slab One', cursive;
position: relative;
display: inline-block;
color: rgb(214, 104, 104);
text-transform: uppercase;
animation: waviy 1s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes waviy {
0%,40%,100% {
transform: translateY(0)
}
20% {
transform: translateY(-20px)
}
}
.wrap {
display: flex;
justify-content: center;
margin: 30px 0px;
}
.searchTerm {
border-radius: 15px;
width: 200px;
}
.searchButton {
width: 40px;
height: 36px;
border: 1px solid #00B4CC;
background: #00B4CC;
text-align: center;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 20px;
}
.search {
display:flex;
justify-content: center;
margin: 50px 0;
}