-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccueil_google.css
146 lines (129 loc) · 2.37 KB
/
accueil_google.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
@import url("https://fonts.googleapis.com/css2?family=Arimo&display=swap");
body {
font-family: "Arimo", sans-serif;
margin: 0;
padding: 0;
font-size: 11px;
}
/* Partie header */
header {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
margin: 10px 20px;
}
/* header .left {
display: flex;
flex-wrap: wrap;
} */
p {
margin-right: 10px;
color: #787878;
cursor: pointer;
}
header button {
border: none;
border-radius: 4px;
color: #fff;
background-color: #39f;
margin-top: -10px;
padding: 10px 15px;
font-size: 10px;
}
header p:hover {
color: #000;
}
header .right {
display: flex;
flex-wrap: wrap;
}
header .right svg {
height: 30px;
width: 30px;
margin-right: 10px;
cursor: pointer;
}
/* Fin de la partie header */
/* Partie principale */
.main {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 100px;
}
.main .form-group {
display: flex;
flex-direction: column;
width: 40%;
}
.main .form-group input {
margin-top: 20px;
padding: 15px;
border-radius: 50px;
border: 1px solid #d1d1d1;
outline: none;
width: 100%;
}
.main .form-group input:hover,
.main .form-group input:focus {
-webk-webkit-box-shadow: -8px -1px 19px -8px rgba(184, 184, 184, 1);
-moz-box-shadow: -8px -1px 19px -8px rgba(184, 184, 184, 1);
box-shadow: -8px -1px 19px -8px rgba(184, 184, 184, 1);
border: none;
}
.main .form-group label i {
font-size: 20px;
margin-top: -35px;
position: relative;
cursor: pointer;
color: #5c5c5c;
}
.main .form-group label .fa-microphone {
float: right;
margin-right: 20px;
}
.main .form-group label .fa-camera-retro {
float: right;
margin-right: -15px;
}
.main .form-group label .fa-magnifying-glass {
float: left;
margin-left: 15px;
}
.main .buttons {
margin-top: 40px;
}
.main .buttons button {
padding: 10px 20px;
background-color: #f0f0f0;
border: none;
border-radius: 5px;
margin-right: 10px;
cursor: pointer;
color: #4d4d4d;
outline: none;
}
/* Fin de la partie principale */
p span {
background-color: #f0f0f0;
border-radius: 8px;
padding: 8px;
}
footer {
position: absolute;
bottom: 0;
right: 0;
left: 0;
background-color: #f0f0f0;
}
footer div {
position: initial;
display: flex;
justify-content: space-between;
}
footer div {
border-top: 1px solid rgba(0, 0, 0, 0.2);
}
footer div p:last-child {
float: right;
}