-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (65 loc) · 1.07 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
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: #ACDF87;
}
#header {
display: flex;
}
.glitter {
transform: rotate(180deg);
}
.fairy {
margin-left: -10px;
}
h1 {
margin-left: 45px;
font-family:cursive;
}
#container {
display: flex;
justify-content: center;
width: 720px;
flex-wrap: wrap;
}
#container .book {
display: flex;
flex-direction: column;
align-items: center;
width: 150px;
height: 100px;
border: 2px solid green;
margin: 12px 12px;
text-align: center;
}
.book {
display: flex;
flex-direction: column;
}
.book button {
margin-top: 8px;
width: 102px;
border: 2px green;
border-style: dashed;
}
#newbook {
display: flex;
justify-content: center;
margin-bottom: 12px;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-between;
}
.form-title {
margin-bottom: 12px;
text-align: center;
}
.form-author {
margin-bottom: 12px;
text-align: center;
}