-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
166 lines (145 loc) · 3.11 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
.tete {
background: linear-gradient(to right, rgb(186, 27, 255), rgb(178, 234, 27));
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.tete .titre {
/*background-color: #695a2b;*/
width: 350px;
height: 60px;
display: flex;
font-style: italic;
font-weight: bold;
font-size: 30px;
text-align: center;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 2px 2px salmon;
border: 2px double salmon;
color: rgb(232, 214, 214);
animation: 3s linear 5s infinite alternate slidein;
}
.tete .titre p {
animation: 3s linear 1s infinite alternate slidein;
}
@keyframes slidein {
from {
transform: scaleX(0);
}
to {
transform: scaleX(1);
}
}
ul {
list-style: none;
}
li {
text-decoration: none;
border: 1px solid;
padding: 5px;
border-radius: 10px;
box-shadow: 2px 2px salmon;
transition: 0.5s;
}
li:hover {
transform: translateX(-10px);
}
a {
text-decoration: none;
}
.container {
background-color: rgb(188, 130, 130);
height: 500px;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
margin: 30px 10px;
}
.container .hero {
background-color: #ffebcd;
display: flex;
justify-content: space-between;
box-shadow: 2px 2px 2px 6px #b3a270;
box-sizing: border-box;
text-align: center;
justify-content: center;
border-radius: 20px;
flex-wrap: wrap;
}
.container .hero img {
height: 200px;
margin: 30px;
border-radius: 20px;
box-shadow: 4px 4px 4px 6px #695a2b;
transition: 0.5s;
}
.container .hero img:hover {
height: 300px;
transform: translateY(-10px);
}
.description {
background-color: rgb(157, 176, 192);
margin-top: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.description h1 {
background-color: #ffebcd;
font-family: Georgia, serif;
/*text-decoration: underline;*/
letter-spacing: 0.5rem;
padding: 10px;
border-radius: 20px;
}
.description .flex {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.description .flex .devi1 {
background-color: rgb(207, 218, 227);
border-radius: 20px;
margin: 20px;
padding: 10px;
border: 2px solid rgb(43, 172, 172);
box-shadow: inset 2px 2px 3px 3px rgb(62, 62, 107);
}
.grafiato p,
h3 {
background-color: seashell;
border-radius: 30px;
padding: 10px;
}
.description .flex .devi2 {
background-color: rgb(207, 218, 227);
border-radius: 20px;
margin: 20px;
border: 2px rgb(43, 172, 172);
box-shadow: inset 2px 2px 3px 3px rgb(62, 62, 107);
padding: 10px;
}
.devi2 p{
background-color: seashell;
border-radius: 30px;
padding: 10px;
}
.pied{
text-align: center;
}
.pied div{
background-color: #2b6932;
padding: 10px;
border: #172418 1px solid;
box-shadow: 2px 2px black;
}
.pied img{
border-radius: 10px;
box-shadow: 2px 2px rgb(22, 221, 35);
}