-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.css
104 lines (85 loc) · 1.56 KB
/
index.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
.header {
display: flex;
justify-content: end;
}
.header a {
text-decoration: none;
color: black;
font-size: 22px;
margin: 3px;
padding: 2px;
font-weight: 50;
}
.header a:hover {
color: cornflowerblue;
}
main {
display: flex;
justify-content: center;
margin-top: 20vh;
}
#google-image {
display: flex;
justify-content: center;
margin-bottom: 15px;
position: relative;
}
#google-image-subtext {
color: #4285f4;
font: 16px/16px roboto-regular, arial, sans-serif;
position: absolute;
left: 402px;
bottom: 0;
white-space: nowrap;
}
#search-bar {
height: 19px;
border: 1px solid #dfe1e5;
border-radius: 24px;
display: flex;
align-items: center;
padding: 10px;
margin: 20px;
width: 584px;
}
#search-bar input {
width: 100%;
margin-left: 7px;
border: none;
font-size: 17px;
box-shadow: none;
outline: none;
}
#search-bar i {
color: lightgray;
padding: 2px;
}
#search-bar img {
height: 25px;
background: transparent;
}
#search-bar:hover {
box-shadow: 10px;
}
#search-button {
display: flex;
justify-content: center;
padding-top: 18px;
}
#search-button input {
height: 36px;
padding: 0px 16px 0px 16px;
margin: 11px 7px 11px 7px;
background-color: #f8f9fa;
border: 1px solid #f8f9fa;
border-radius: 4px;
font-family: arial, sans-serif;
font-size: 14px;
}
#search-button input:hover,
#search-bar:hover {
box-shadow: 0 0 2px gray;
}
.cam:hover,.search:hover{
opacity:0.5;
}