forked from stoody-dev/SIH-2nd-Page-Trail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
146 lines (126 loc) · 3.3 KB
/
home.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
* {
padding: 10px;
-webkit-font-smoothing: antialiased;
}
body {
background: #e0e0e0;;
}
.destination {
padding: 100px 50px 0 35px;
background: #56db95;
width: 500px;
flex-direction: column;
border-radius: 25px;
/* box-shadow: 15px 15px 8px 8px rgba(15, 13, 13, 0.5), -7px -7px 10px 3px rgba(255, 255, 255, 0.25); */
-webkit-box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
-moz-box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
}
.destination h1 {
padding: 0 0 0 ;
font-weight: 300;
font-family: "Rubik", sans-serif;
text-align: center;
color: #001c38;
}
.destination .content {
padding: 0px;
}
.destination .input-field {
padding: 0px;
}
.destination .input-field input {
font-size: 16px;
display: block;
font-family: "Rubik", sans-serif;
width: 100%;
padding: 15px 1px;
border: 0;
background: #f2f0f3;
border-bottom: 1px solid #ce9cb6;
border-style: hidden;
outline: none;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
.destination .input-field h3 {
padding: 0 0 0 ;
font-weight: 300;
font-family: "Rubik", sans-serif;
color: #000000;
}
.destination .input-field input::-webkit-input-placeholder {
text-transform: uppercase;
}
.destination .input-field input::-moz-placeholder {
text-transform: uppercase;
}
.destination .input-field input:-ms-input-placeholder {
text-transform: uppercase;
}
.destination .input-field input::-ms-input-placeholder {
text-transform: uppercase;
}
.destination .input-field input::placeholder {
text-transform: uppercase;
color: #85586F;
-webkit-font-smoothing: antialiased;
font-weight: bold;
}
.destination .input-field input:focus {
border-color: rgb(255, 17, 17);
}
.destination .search {
display: -webkit-box;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
}
.destination .search button {
width: 40%;
border: none;
padding: 15px;
font-weight: bold;
font-size: 16px;
font-family: "Rubik", sans-serif;
cursor: pointer;
text-transform: uppercase;
background: #DFD3C3;
color: #001c38
letter-spacing: 0.5px;
outline: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
}
.destination .search button:hover {
background: #F8EDE3;
top: 100px;
}
#cool {
position: relative;
bottom: 47px;
right: 160px;
/* border: 2px solid green; */
}
@media screen and (max-width:820px){
.destination {
max-width: 100%;
margin: 0 auto;padding: 100px 50px 0 35px;
background: #56db95;
width: 500px;
flex-direction: column;
border-radius: 25px;
/* box-shadow: 15px 15px 8px 8px rgba(15, 13, 13, 0.5), -7px -7px 10px 3px rgba(255, 255, 255, 0.25); */
-webkit-box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
-moz-box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
box-shadow: 10px 10px 30px 0px rgba(133, 88, 111, 0.5);
}
#cool {
border: 2px solid red;
}
}