-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchPage.css
More file actions
113 lines (94 loc) · 1.81 KB
/
SearchPage.css
File metadata and controls
113 lines (94 loc) · 1.81 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
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
.searchPage__header{
display: flex;
position: sticky;
top: 0;
background-color: white;
z-index: 100;
align-items: flex-start;
margin-top: 20px;
padding: 5px;
border-bottom: 1px solid lightgrey;
}
.search__pageLogo{
object-fit: contain;
height: 30px;
margin-top: 10px;
margin-right: 50px;
}
.searchPage__headerBody > .search > .search__input {
margin-top:0;
width: unset;
margin: unset;
max-width:700px;
}
.searchPage__headerBody > .search{
height: 60px;
}
.searchPage__options{
display: flex;
align-items: center;
color: grey;
font-size: small;
}
.searchPage__options a,
.searchPage__optionsRight a {
text-decoration: none;
color: gray;
}
.searchPage__optionsRight,
.searchPage__optionsLeft {
display: flex;
}
.searchPage__optionsRight{
margin-left: 80px;
}
.searchPage__option{
display: flex;
align-items: center;
margin-right: 20px;
padding: 10px;
}
.searchPage__option:hover{
box-shadow: 11px 25px 0px -20px #1A73E8;
}
.searchPage__option a {
margin-left: 5px;
}
.searchPage__result{
margin: 40px 0;
}
.searchPage__resultCount{
color: #70757a;
font-size: 14px;
}
.searchPage__resultImage{
object-fit: contain;
height: 20px;
width: 20px;
margin-right: 10px;
}
.searchPage__results{
max-width: 650px;
margin-top: 20px;
margin-left: 180px;
margin-bottom: 100px;
}
.searchPage__resultsTitle{
text-decoration: none;
}
.search__pageTitle:hover {
text-decoration: underline;
}
.search__pageTitle:active{
text-decoration: underline;
color: blue;
}
.searchPage__resultSnippet{
margin-top: 10px;
font-family:Helvetica;
color:#3C4043;;
}
.search__pageTitle{
font-weight: normal;
letter-spacing: -1px;
}