-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (35 loc) · 800 Bytes
/
Copy pathstyle.css
File metadata and controls
39 lines (35 loc) · 800 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
body {
background: linear-gradient(rgb(237, 237, 207), rgb(190, 212, 228));
display: flex;
justify-content: center;
align-items: center;
/* margin: 0; */
}
.milieu {
background-color: rgb(209, 209, 209);
width: 300px;
/* border: px solid black; */
border-radius: 18px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 5px 12px 20px rgba(0, 0, 0, 0.5);
transition: transform 0.3s;
}
.milieu > h4 { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: large;
}
form {
padding: 10px;
text-align: center;
}
input {
margin: 10px;
padding: 5px;
width: 260px;
border-radius: 10px;
transform: scale(1);
transition: transform 0.3S ;
}
input:hover{transform: scale(1.09) ;}