-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (53 loc) · 918 Bytes
/
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
h1 {
text-align: center;
}
main {
width: 90%;
margin: 0 auto;
}
form {
width: 50%;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
input[type='text'] {
width: 80%;
margin-right: 5px;
padding: 10px;
box-sizing: border-box;
border: 1px solid black;
border-radius: 5px;
}
button {
width: 20%;
background-color: black;
border: none;
color: whitesmoke;
text-align: center;
text-decoration: none;
border-radius: 5px;
cursor: pointer;
}
#target {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
}
article {
border: 1px solid black;
margin: 5px;
padding: 10px;
width: 45%;
}
figure {
text-align: center;
}
figure img {
width: 50%;
margin-bottom: 5px;
}
#name {
text-align: center;
}