-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 2.07 KB
/
style.css
File metadata and controls
89 lines (76 loc) · 2.07 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
body {
background: #2E2F40;
font-family: 'Montserrat', sans-serif;
}
.nav{
max-width: 1000px;
border-bottom: 100px solid #860255;
border-left: 40px solid transparent;
margin: 0 auto;
height: 0px;
box-shadow: 20px 17px 27px rgba(0, 0, 0, 0.15);
}
.nav .inner{
width: 100%;
height: 100px;
right: 0;
overflow: hidden;
background: #860255;
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #860255), color-stop(100, #EF4B3F));
/* IE10+ */
background-image: -ms-linear-gradient(left, #860255 0%, #EF4B3F 100%);
/* Mozilla Firefox */
background-image: -moz-linear-gradient(left, #860255 0%, #EF4B3F 100%);
/* Opera */
background-image: -o-linear-gradient(left, #860255 0%, #EF4B3F 100%);
/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(left, #860255 0%, #EF4B3F 100%);
/* W3C Markup */
background-image: linear-gradient(to right, #860255 0%, #EF4B3F 100%);
}
.searchField {
display: inline-block;
width: 97%;
height: 38px;
margin: 10px;
border: 1px solid grey;
font-size: 20px;
outline: grey;
padding: 5px;
padding-right: 50px;
cursor: pointer;
color: grey;
box-sizing:border-box;
}
.searchInput {
margin-top: 1%;
position: relative;
}
.searchInput .glyphicon {
position: absolute;
z-index: 2;
right: 28px;
font-size: 24px;
width: 24px;
color: #4b4b4b;
text-align: center;
padding: 6px 0;
top: 11px;
cursor: pointer;
}
#res-of-query{
margin: 0 auto;
max-width: 1000px;
background-color: aliceblue;
padding-left: 3%;
padding-right: 3%;
box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
-moz-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
-webkit-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
}
h1{
text-shadow: 5px 1px 8px rgba(0, 0, 0, 0.65);
color: #000000;
font-size: 20px;
}