-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (65 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300;1,400&display=swap');
body, form fieldset{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Merriweather', serif;
}
body{
background-image: url('bookshelf.JPG');
background-repeat: no-repeat;
background-size: cover;
}
#container{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
#container, .button_container{
display: flex;
}
#container div, button{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#container div button{
display: none;
}
#container div:hover button{
display: block;
}
.book_cover{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: #90ee90;
margin: 0.25%;
}
.book_cover h6{
font-size: 1.75em;
}
.book_cover p{
font-size: 1.25em;
}
.remove_button{
padding: 0.1rem;
}
form fieldset, button{
background-image: url('wood.jpeg');
border: none;
box-shadow: 10px 5px 5px brown;
border-radius: 5px;
}
button{
padding: 15px;
margin: 5px;
font-family: 'Merriweather', serif;
}
.button_container{
display:grid;
grid-template-columns: 1fr 1fr;
}