-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
161 lines (154 loc) · 3.1 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'arial', sans-serif;
}
section{
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
section header{
position: absolute;
top: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
padding: 20px;
}
section header ul{
display: flex;
align-items: center;
justify-content: center;
}
section header ul li{
list-style: none;
margin-left: 20px;
}
section header ul li a{
text-decoration: none;
color: #111;
font-size: 13px;
display: flex;
justify-content: center;
align-items: center;
}
.btn{
background-color: #4584ef;
border: none;
outline: none;
padding: 8px 14px;
color: #fff;
font-size: 14px;
font-weight: 700;
border-radius: 3px;
cursor: pointer;
}
section .main{
width: 580px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
section .main .SearchBox{
position: relative;
width: 100%;
margin-top:20px;
}
section .main .SearchBox .search{
width: 100%;
padding: 13px;
padding-left: 45px;
padding-right: 60px;
border-radius: 30px;
border: 1px solid #ccc;
outline: none;
font-size: 16px;
}
section .main .SearchBox .icons{
position: absolute;
top: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 20px;
cursor: pointer;
pointer-events: none;
}
section .main .buttons{
margin-top:20px ;
}
section .main .buttons button{
margin: 0px 5px;
padding: 12px 20px;
color: #555;
font-size: 14px;
border: none;
cursor: pointer;
border-radius: 4px;
border: 1px solid transparent;
outline: none;
}
section .main .buttons button:hover{
border: 1px solid #ccc;
}
section .main .languages{
display: flex;
margin-top: 30px;
}
section .main .languages li{
list-style: none;
margin: 0px 5px;
font-size: 13px;
}
section .main .languages li a{
text-decoration: none;
color: #1a0dab;
}
section .main .languages li a:hover{
text-decoration: underline;
}
section footer{
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
background-color: #f2f2f2;
}
section footer .row{
padding: 15px 25px;
border-top: 1px solid rgb(0, 0, 0, 0.05);
}
section footer .row2{
display: flex;
justify-content: space-between;
align-items: center;
}
section footer .row2 ul{
display: flex;
}
section footer .row2 ul li{
list-style: none;
}
section footer .row2 ul li a{
text-decoration: none;
font-size: 14px;
color: #5f6368;
margin-left: 0px;
margin-right: 25px;
}
section footer p{
font-size: 14px;
color: #5f6368;
}
section footer .row2 ul:nth-child(2) li a{
margin-right: 0px;
margin-left: 25px;
}