-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (68 loc) · 1.14 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
*{
margin: 0;
padding: 0;
}
.main{
width: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.5)50%);
background:url(images/background.jpg);
background-position: center;
background-size: cover;
height: 109vh;
}
.navbar{
width: 1200px;
height: 75px;
margin: auto;
}
.icon{
width: 200px;
float: left;
height: 70px;
}
.logo{
color: orange;
font-family: Arial;
font-size: 35px;
padding-left: 20px;
float: left;
padding-top: 10px;
}
.menu{
width: 400px;
float: left;
height: 70px;
}
ul{
float: left;
display: flex;
justify-content: center;
align-items: center;
}
ul li{
list-style: none;
margin-left: 62px;
margin-top: 20px;
font-size: 14px;
}
ul li a{
text-decoration: none;
color: aliceblue;
font-family:Arial, Helvetica, sans-serif;
font-weight: bold;
transition: 0.4s ease-in-out;
}
ul li a:hover{
color: coral;
}
.search{
width: 200px;
float: left;
margin-left: 270px;
}
.srch{
font-family: 'Times New Roman', Times, serif;
width: 200px;
height: 30px;
background: transparent;
}