forked from simplonco/jquery-basic-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.css
More file actions
50 lines (50 loc) · 931 Bytes
/
master.css
File metadata and controls
50 lines (50 loc) · 931 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
*{
margin: 0;
padding: 0;
font-family: futura;
font-weight: 200;
color: white;
text-shadow: 0 0 5px rgba(167, 167, 167, 0.5);
}
body{
display: flex;
align-items: center;
justify-content: space-around;
background-color: rgb(142, 231, 164)
}
.container{
margin: 60px 0;
width: 80vw;
border-top: 2px solid white;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.books h1{
text-align: center;
letter-spacing: 1px;
}
.books{
border-bottom: 2px solid white;
padding: 20px;
}
.books .infos{
height: 0;
opacity: 0;
display: flex;
transition: opacity 1s ease, height 1s ease;
align-items: center;
justify-content: center;
flex-direction: column;
}
.books:hover .infos{
height: 100px;
opacity: 1;
}
a{
text-decoration: none;
background-color: rgb(233, 138, 138);
color: white;
padding: 5px 15px;
box-shadow: 0px 0px 5px rgba(111, 111, 111, 0.6) ;
}