-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
217 lines (215 loc) · 4.27 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
*{margin: 0;
padding: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: white;
}
nav{
width: 90%;
display: flex;
align-items: center;
justify-content: space-between;
/* margin: 0 auto; */
}
.Header{
width: 100%;
min-height: 100vh;
background-color: black;
background-image: radial-gradient(circle, rgba(0,0,0,0.3925945378151261) 0%, rgba(0,0,0,0.8687850140056023) 97%), url(images/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
.identification{
display: flex;
}
.Logo img {
width: 140px;
}
.Contenue{
width: 80%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.identification a{
margin-left: 20px;
padding: 10px 18px 10px 18px;
background-color: #e50914;
text-decoration: none;
color: white;
font-size: 1rem;
font-weight: 400;
}
.identification select{
margin-left: 20px;
padding: 10px 18px 10px 18px;
background-color: rgba(0, 0, 0, .4);
text-decoration: none;
color: white;
border: 1px solid #aaa;
}
.Contenue h1{
font-size: 3.125rem;
max-width: 640px;
text-align: center;
}
.Contenue h2{
/* margin: 0px 20px 0px 20px; */
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
.Contenue h3{
max-width: 640px;
text-align: center;
}
.connexion{
width: 580px;
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.connexion input{
width: 60%;
height: 50px;
padding-left: 10px;
border: none;
border-radius: 2px;
}
.connexion button{
width: 30%;
background-color: #e50914;
border: none;
border-radius: 2px;
color: white;
}
.Contenuee{
width: 100%;
min-height: 70vh;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
.Contenuee::before {
content: "";
display: block;
width: 100%;
background-color:rgba(255, 255, 255, 0.192);
height: 8px;
}
.Contenuee img{
width: 500px;
height: 450px;
}
.text{
width: 480px;
font-size: 1.80rem;
}
.informations h1{
text-align: center;
}
.INFO{
display: flex;
flex-direction: column;
align-items: center;
margin: auto;
width: 80%;
padding: 30px;
}
.question{
height: 60px;
margin-bottom: 10px;
display: flex;
align-items: center;
width: 50%;
background-color: rgb(58, 56, 56);
}
.question h4{
margin-left: 20px;
}
.informations::before {
content: "";
margin-bottom: 20px;
display: block;
width: 100%;
background-color:rgba(255, 255, 255, 0.192);
height: 8px;
}
#connexion{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 30px;
}
#connexion h3{
width: 90%;
text-align: center;
}
@media screen and (max-width: 600px) {
.Logo img {
width: 113px;
}
.identification a{
margin-left: 10px;
padding: 8px 10px 6px 10px;
font-size: 12px;
}
.Contenue h1 {
font-size: 2.125rem;
max-width: 640px;
text-align: center;
}
.Contenue h2 {
font-size: 19px;
}
.identification select{
margin-left: 10px;
padding: 8px 10px 6px 10px;
font-size: 12px;
}
.Contenue h3{
font-size: 14px;
}
.connexion input {
height: 35px;
}
.informations::before {
margin-top: 20px;
}
.question {
width: 100%;
}
.connexion {
width: 100%;
}
.Contenuee img {
width: 330px;
height: 300px;
}
.text {
width: 300px;
margin: 0 auto;
font-size: 15px;
}
.Contenuee{
width: 100%;
margin-top: 20px;
min-height: 70vh;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
}