-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (65 loc) · 1.21 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
.imageGrid{
width: 60%;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr ;
grid-gap: 10px;
}
body{
text-align:center;
font-family: 'Gayathri', sans-serif;
padding: 0px;
margin: 0px;
background: rgba(28, 153, 211, 0.183);
}
.brand{
background: rgb(28, 153, 211);
padding: 40px 5px;
min-height: 250px;
margin-bottom: 60px;
}
.brand h1{
color: #ffffff;
font-family: 'Lobster', cursive;
font-size: 80px;
text-shadow: 2px 5px 2px #29262683;
}
.brand span{
color: rgb(255, 217, 0)
}
.search{
width: 60%;
margin: auto;
display: block;
border: none;
box-shadow: 4px 2px 5px #29262683;
padding: 10px;
margin-top: -30px;
}
.meme{
width: 100%;
}
.img{
width: 100%;
height: 130px;
overflow: hidden;
}
.img img{
height: auto !important;
}
@media only screen and (max-width: 1000px) {
.imageGrid{
width: 85%;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
}
@media only screen and (max-width: 600px) {
.imageGrid{
width: 95%;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr ;
}
}