-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvance_search.css
121 lines (98 loc) · 1.69 KB
/
Advance_search.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
body{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.logo{
width: 74px;
position: absolute;
top: 20px;
left: 20px;
}
.header{
height: 91px;
max-width: 100vw;
padding: 0px 40px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.header #link{
font-size: 13px;
text-decoration: none;
color: black;
}
.header #link:hover{
text-decoration: underline;
}
#Advanced_Search{
font-size: 20px;
color: #d93025;
margin: 0px 0px 20px 40px;
}
.line{
height: 1px;
max-width: 100vw;
background-color: rgba(148, 148, 148, 0.281);
}
form{
padding: 40px 0px 0px 30px;
}
table th, td{
text-align: start;
padding: 10px;
}
table #Find_pages{
font-size: 16px;
font-weight: 500;
color: #333
}
table #To_do_this{
font-size: 13px;
font-weight: 700;
color: #777;
}
table td{
font-size: 13px;
color: #222;
}
table td span{
font-size: 11px;
color: #555;
}
table td input{
height: 25px;
width: 560px;
border: 1px solid #d9d9d9;;
}
table td input:focus{
outline: none;
border: 1px solid blue;
}
table .search_button{
text-align: center;
}
.search_button button{
padding: 8px 12px;
font-size: 11px;
font-weight: bold;
color: white;
border: 1px solid #3079ed;
border-radius: 2px;
background-image: linear-gradient(#4d90fe,#4787ed);
}
.search_button button:hover{
background-image: linear-gradient(#5390f3,#497ed3);
}
@media(max-width: 1100px){
table span{
display: none;
}
table td{
white-space: nowrap;
}
table input{
max-width: 60vw;
min-width: 300px;
}
}