-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (101 loc) · 1.31 KB
/
style.css
File metadata and controls
126 lines (101 loc) · 1.31 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
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
body{
font-size: 0.9rem;
font-style: inherit;
font-family: sans-serif;
margin: 0;
}
header{
margin: 0.6rem;
}
a{
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
.text{
text-align: right;
}
.text a{
padding-left: 0.5rem;
margin-left: 0.5rem;
}
.img{
border-radius: 50px;
}
#banner{
padding-top: 20px;
text-align: center;
}
.search-bar {
margin-left: 20em;
width: 40%;
position: relative;
margin-top: 30px;
}
.search-bar input {
width: 100%;
height: 40px;
border: 2px solid #9e979a;
border-radius: 25px;
outline: none;
}
.search-ico {
position: absolute;
left: 10px;
top: 13px;
}
.microphone-ico {
position: absolute;
right: 10px;
top: 13px;
}
#lucky button{
padding: 10px;
margin-right: 30px;
margin-top: 40px;
border: none;
cursor: pointer;
}
#offer{
margin-top: 50px;
}
h4{
color: black;
padding-right: 40px;
}
h4 a{
padding-right: 15px;
margin-left: 10px;
}
footer{
background-color: #eeeeee;
margin-top: 152px;
}
#Nigeria a{
color: #9e979a;
padding: 10px;
}
hr{
color: #e0dfe0;
}
p{
color: #9e979a;
padding: 10px;
}
#foot{
justify-content: space-between;
flex-wrap: wrap;
display: flex;
margin: 10px;
}
@media(max-width: 700px){
.search-bar{
margin-left: 10em;
}
}
@media(min-width: 1000px){
.search-bar{
margin-left: 32em;
}
}