-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (115 loc) · 2.1 KB
/
style.css
File metadata and controls
126 lines (115 loc) · 2.1 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/pexels-eberhardgross-707344.jpg);
background-size: cover;
background-position: center;
margin-left: 50px;
margin-top: 20px;
}
.logo h2{
color: orangered;
font-size: 36px;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
}
nav .menu-list a{
margin-left: 50px;
font-size: 16px;
color: white;
text-decoration: none;
list-style: none;
}
.search-area{
border: 1px solid orangered;
/* padding: 10px 0px; */
border-radius: 5px;
margin-right: 30px;
width: 28rem;
display: flex;
}
.search-area input{
background-color: transparent;
border: none;
padding-block: 10px;
outline: none;
margin-left: 10px;
color: white;
width: 70%;
}
.search-area button{
background-color: #f35613;
color: white;
border: none;
outline: none;
padding: 10px 0px;
height: 100%;
width: 30%;
}
.hero-detail{
margin-top: 80px;
display: flex;
justify-content: space-between;
}
.hero-content h2{
font-size: 36px;
color: white;
}
.hero-content h1{
font-size: 48px;
color: #f35613;
}
.hero-content p{
font-size: 16px;
color: white;
margin-top: 20px;
}
.hero-content button{
margin-top: 30px;
background-color: #f35613;
border: none;
outline: none;
border-radius: 8px;
padding: 8px 10px;
color: white;
}
form{
width: 300px; height: 400px;
/* border: 2px solid red; */
background-color: #121212;
padding: 20px;
margin-right: 50px;
}
form input{
margin-left:9px ;
width: 250px;
height:40px;
padding: 5px;
margin-top: 5px;
/* margin-right: 120px; */
border-radius: 5px;
align-items: center;
}
form p{
margin-top: 8px;
color: white;
text-align: center;
}
form h3{
color: white;
}
form button{
background: white;
width: 150px;
height: 30px;
margin: 15px 50px 3px;
border-radius: 10px;
background:orangered;
color: black
}