-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (90 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (90 loc) · 1.57 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-image: url('./assets/bg.png');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.navbar{
display: flex;
align-items: center;
justify-content: space-between;
background-color: black;
}
.navbar .grow{
flex: 1;
}
.grow .list{
display: flex;
align-items: center;
padding: 7px;
}
.list li{
list-style: none;
margin: 25px;
font-family: 'Poppins', sans-serif;
font-size: 13px;
font-weight: 600;
color: white;
cursor: pointer;
}
.logo img{
width: 40%;
margin-left: 80px;
cursor: pointer;
}
.line{
border-left: 1px solid white;
height: 50px;
margin-left: -30px;
}
.btn-cont{
margin-right: 80px;
}
.btn{
background-color: #ba0cc5;
font-size: 13px;
font-weight: 600;
color: white;
padding: 8px 30px;
border-radius: 5px;
letter-spacing: 2px;
border: none;
cursor: pointer;
}
/* main section */
.main-section{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.heading{
margin-top: 8%;
width: 60%;
font-family: 'Poppins', sans-serif;
}
.heading h1{
text-align: center;
color: white;
font-size: 3.5rem;
}
.heading p{
text-align: center;
color: white;
font-size: 1.5rem;
}
.btn-cont2 .btn{
margin-top: 35px;
font-size: 18px;
font-weight: 800;
color: white;
padding: 12px 30px;
}