-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (69 loc) · 1.32 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
.navbar-container{
display: flex;
padding: 30px 140px;
}
/* logo dimension */
.navbar-container>div>img{
width: 100px;
height: 30px;
margin-top: 10px;
}
.list{
display: flex;
list-style-type: none;
justify-content: space-between;
margin-left: 40px;
}
li.list-item{
padding: 0 20px;
font-family: poppins;
font-weight: 100;
}
li.list-item:first-child{
font-weight: 400;
}
.button-group>.nav-button{
position: relative;
left: 60vh;
padding: 10px 25px;
border-radius: 10px;
background-color: #5A20CB;
border: none;
color: white;
}
.banner-container{
display: flex;
}
/* image dimension */
.banner-container>div>img{
width: 668px;
height: 474px;
}
.heading-text{
padding-left: 140px;
width: 450px;
font-family: poppins;
font-weight: 600;
font-size: xxx-large;
color: #2e145c;
line-height: 55px;
/* position: relative;
top: 50px; */
}
.heading-text>span{
color: #5d2db3;
}
.description{
padding-left: 140px;
font-family: poppins;
font-weight: 200;
width: 380px;
}
button.nav-button.btn{
padding: 20px 30px;
border-radius: 10px;
background-color: #5d2dbd;
border: none;
color: white;
margin-left: 140px;
}