-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (72 loc) · 1.3 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
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: url(media/image9.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;
font-weight: 800;
font-size:21px;
color: rgb(107, 11, 11);
letter-spacing: 0.1rem;
}
.navbar ul li a span {
color: blue;
font-weight: 520;
}
.content {
width: 100%;
position : absolute;
top: 30%;
}
.left-col {
margin-left: 6%;
}
.left-col h1{
font-size: 90px;
color: rgb(107, 11, 11);
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: rgb(107, 11, 11);
font-weight: 800;
margin-right: 15px;
}
#icon {
width: 80px;
cursor: pointer;
}