-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempruntStyle.css
107 lines (91 loc) · 1.83 KB
/
empruntStyle.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* {
font-family: 'Roboto Slab', serif;
box-sizing: border-box;
margin: 0;
}
body {
margin: 0;
background-image: url(./background.jpg);
}
nav {
height: 150px;
width: 100%;
background-color: rgba(55, 26, 27, 0.9);
display: flex;
align-items: center;
margin-bottom: 20px;
justify-content: space-around;
gap: 15px;
}
.logo {
object-fit: contain;
height: 120px;
margin-left: 40px;
}
.user {
font-size: 1.5rem;
font-weight: 500;
color: white;
}
.panier {
font-size: 1.5rem;
color: rgba(138, 147, 97, 0.9);
text-decoration: underline;
}
.panier:hover {
color: rgba(138, 147, 97, 1);
cursor: pointer;
}
.admin {
font-size: 1.5rem;
color: red;
text-decoration: underline;
}
.grid {
display: flex;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}
.titre {
font-size: 2rem;
font-weight: 600;
color: #ADD8E6;
}
.oeuvre {
height: 300px;
width: 300px;
background-color: rgba(55, 26, 27, 0.9);
border-radius: 15px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
text-align: center;
}
button {
width: 200px;
height: 35px;
border-radius: 5px;
border: none;
background-color: rgba(138, 147, 97, 0.9);
font-weight: 900;
font-size: 1.1rem;
color: black;
}
button:hover {
background-color: rgba(138, 147, 97, 1);
cursor: pointer;
}
p {
font-size: 1.4rem;
font-weight: 500;
color: #fff;
}
@media screen and (max-width: 613px) {
nav {
height: 200px;
flex-direction: column;
}
}