-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (66 loc) · 1.06 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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.container{
height: 100vh;
width: 100%;
background-image:url("image.png");
background-size:cover;
background-position:center;
position:relative;
}
.navbar{
width: 88%;
margin: auto;
padding: 15px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 140px;
cursor: pointer;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 15px;
}
.navbar ul li a{
text-decoration: none;
color: #fff;
font-size: 15px;
}
.content{
width: 100%;
position: absolute;
top: 30%;
}
.left-col{
margin-left: 6%;
}
.left-col h1{
font-size: 90px;
color: rgb(195, 32, 92);
line-height: 110px;
float: left;
}
.right-col{
float: right;
margin-right: 6%;
margin-top: 120px;
display: flex;
align-items: center;
}
.right-col p{
font-size: 18px;
color: #5f5f5f;
font-weight: 400;
margin-right: 15px;
}
#icon{
width: 80px;
cursor: pointer;
}