-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (49 loc) · 925 Bytes
/
Copy pathstyle.css
File metadata and controls
56 lines (49 loc) · 925 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header {
background-color: #333333;
text-align: center;
padding: 20px;
}
.header h1 {
color: white;
font-size: 40px;
}
.search-bar {
margin: 20px auto;
width: 100%;
text-align: center;
}
input {
width: 50%;
padding: 10px;
border: 1px solid #333333;
border-radius: 5px;
font-size: 18px;
outline: none;
}
button {
padding: 10px;
border: 1px solid blue;
border-radius: 5px;
font-size: 18px;
background-color: blue;
color: white;
cursor: pointer;
}
.img-container {
width: 100% ;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
img {
width: 40vh;
height: 40vh;
margin: 1rem;
border-radius: 1rem ;
box-shadow: 0 60px 80px rgba(0,0,0,0.60), 0 45px 26px rgba(0,0,0,0.14);
}