-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
179 lines (152 loc) · 2.69 KB
/
styles.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
*{
margin: 0;
padding: 0%;
box-sizing: border-box;
text-decoration: none;
font-family: Arial;
}
nav{
display: flex;
align-items: center;
justify-content: flex-end;
margin-right: 15px;
margin-top: 15px;
}
nav a{
display: inline-block;
cursor: pointer;
font-size: 14px;
padding: 5px;
color: black;
}
nav a:hover{
text-decoration: underline;
}
nav img{
padding: 5px;
width: 35px;
margin: auto 8px
}
nav img:hover{
cursor: pointer;
border-radius: 50%;
opacity: 0.8;
}
nav button{
background-color: rgb(74, 140, 255);
text-align: center;
vertical-align: middle;
padding: 0.6em;
cursor: pointer;
color: white;
border: thin;
border-radius: 3px;
padding-left: 2em;
padding-right: 2em;
}
nav button:hover{
background-color: rgba(74, 140, 366, 0.9);
}
.section1{
flex: 1;
}
.section1 .logo{
display: block;
margin: 0px auto;
margin-top: 110px;
}
.search-box{
width: 580px;
margin: 0px auto;
position: relative;
margin-top: -10px;
text-align: center;
}
.search-box .search-input{
display: block;
border: 1px solid #ddd;
font-size: 15px;
padding: 12px;
padding-left: 40px;
/* padding-right: 100px; */
border-radius: 25px;
width: 100%;
outline: none;
}
.search-box .search-input:hover{
border: solid #fff;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}
.search-box .search-icon{
width: 17px;
position: absolute;
top: 13px;
left: 13px;
opacity: .4;
}
.search-box .vs-icon{
width: 17px;
position: absolute;
top: 13px;
right: 20px;
}
.s-button{
background-color: rgb(245, 245, 245);
padding: 10px 15px;
cursor: pointer;
color: black;
border: 1px solid transparent;
margin-top: 30px;
margin-right: 10px;
font-size: 14px;
border-radius: 3px;
transition: border-color 200ms;
outline: none;
}
.s-button:hover{
border: 1px solid rgb(240, 240, 240);
}
.language{
margin-top: 30px;
text-align: center;
font-size: 13px;
height: 60.5vh;
}
.language a{
margin-left: 5px;
}
.language a:hover{
text-decoration: underline;
}
footer{
background: #f7f7f7;
}
footer h4{
color: gray;
font-size: 15px;
font-weight: 500;
padding-left: 20px;
line-height: 40px;
}
/* footer a{
display: flex;
} */
footer a:hover{
text-decoration: underline;
}
.links{
display: flex;
justify-content: space-between;
border-top: 1px solid #ddd;
line-height: 40px;
font-size: 15px;
color: #ddd;
padding-left: 20px;
padding-right: 20px;
}
.link-1{
color: #ddd;
text-decoration: none;
}
link-2{
}