-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (59 loc) · 1.43 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
body {
background-image: url('./img/background.jpg');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding-bottom: 70px;
}
.listeArticle
{
display: flex;
margin :20%;
align-items: center;
justify-content: space-around;
}
.card.infosArticle{
border-radius: 10px;
background: #fff;
box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
transition: .1s transform cubic-bezier(.155,1.105,.295,1.12),.1s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
cursor: pointer;
margin: 10px;
}
.card.infosArticle:hover{
transform: scale(1.1);
box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
.infosArticle
{
display: flex;
justify-content: center;
}
.add{
border-radius: 10px;
box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
transition: .1s transform cubic-bezier(.155,1.105,.295,1.12),.1s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
cursor: pointer;
}
.add:hover{
transform: scale(1.5);
box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
form
{
margin-top: 10%;
margin-left: 25%;
margin-right: 25%;
}
.error{
display: flex;
align-content: center;
}
footer{
margin-top: 25%;
position: absolute;
bottom: 0;
padding-top:50px;
height:50px;
}