-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_search_style.css
More file actions
78 lines (65 loc) · 1.29 KB
/
image_search_style.css
File metadata and controls
78 lines (65 loc) · 1.29 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
body {
background: white;
display: flex;
flex-direction: column;
align-items: center;
}
h3 {
color: #0C1F43;
}
#content {
height: 100%;
display: grid;
flex-direction: column;
justify-content: flex-start;
display: grid;
grid-template-columns: 100px 100px 100px 100px;
grid-template-rows: 200px 200px 200px;
grid-template-areas:
"logo logo logo logo"
"main main main main"
"footer footer footer footer";
}
#search {
grid-area: main;
display: flex;
flex-direction: column;
align-items: center;
font-size: x-large;
font-family: sans-serif;
}
#search-bar {
height: 35px;
width: 300px;
border: 1px solid black;
border-radius: 10px;
text-indent: 5px;
background-color: #93d4d3;
}
#search-button {
height: 35px;
width: 70px;
margin-left: 20px;
border: none;
border-radius: 5px;
font-weight: bold;
background: linear-gradient(180deg, #283576 30%, #2d97b7 100%);
color: #EAEAE9;
}
#search-button:hover {
filter: drop-shadow(0px 0px 3px black);
}
#search-bar:hover {
filter: drop-shadow(0px 0px 3px black);
}
#search-bar:focus {
outline: none;
}
#search-button:focus {
outline: none;
}
#bigLogo {
grid-area: logo;
position: relative;
top: 75px;
}