-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.36 KB
/
style.css
File metadata and controls
64 lines (56 loc) · 1.36 KB
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
box-sizing: border-box;
/*outline: 1px solid red;*/
}
body {
display: flex;
font-family: 'Roboto', sans-serif;
justify-content: center; /* main axis */
align-items: center; /* cross axis */
height: 100vh; /* senza altezza NON viene centrato verticalmente !!!! */
overflow: hidden;
/*background-image: linear-gradient(90deg, red, blue);
il background degrada dal rosso al blu da top a bottom (verticalmente)
Se inserisco anche i gradi es. 90deg viene impostato da sinistra a destra orizzontale */
background-image: linear-gradient(90deg, #7d5fff, #7158e2);
margin: 0;
}
.search {
position: relative;
height: 50px;
}
.search input {
background-color: #fff;
border: 0;
font-size: 18px;
padding: 15px;
height: 50px;
width: 50px;
transition: width 0.3s ease;
}
.btn {
background-color: #fff;
border: 0;
cursor: pointer;
position: absolute;
/* va a coprire la search */
top: 0;
left: 0;
/* stesse misure */
height: 50px;
width: 50px;
font-size: 24px;
/* anche questo si muove */
transition: trasform 0.3s ease;
}
.btn:focus,
input:focus {
outline: none;
}
.search.active input {
width: 200px;
}
.search.active .btn {
transform: translateX(198px);
}