-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (86 loc) · 1.38 KB
/
style.css
File metadata and controls
96 lines (86 loc) · 1.38 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
95
96
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
/* navigation bar */
.navigation-bar {
display: flex;
align-items: center;
justify-content: space-around;
padding: 15px;
margin: 0 90px;
}
.grow-list{
flex: 1;
}
.navigation-bar .logo {
width: 80%;
display: flex;
align-items: center;
}
.menu {
display: flex;
align-items: center;
}
.menu li {
list-style: none;
margin: 15px;
justify-content: flex-start;
font-family: "Poppins", sans-serif;
font-weight: 500;
cursor: pointer;
transition: 0.3s;
}
.menu li:hover {
color: #5955b3;
scale: 1.04;
}
.btn {
background-color: #5955b3;
color: #ffffff;
padding: 12px 23px;
font-weight: 600;
border: none;
border-radius: 5px;
cursor: pointer;
}
.main-section {
display: flex;
justify-content: center;
align-items: center;
}
/* left section */
.left-section {
width: 50%;
margin-left: 104px;
}
.left-section h1 {
font-size: 3rem;
color: #3c2f60;
line-height: 1.2;
}
.left-section p {
color: #828282;
margin-top: 10px;
font-size: small;
font-weight: 400;
}
.left-section h1 span {
color: #5955b3;
}
.left-section div .big-btn {
margin-top: 50px;
}
/* right section */
.right-section {
display: flex;
align-items: center;
justify-content: center;
}
.right-section img {
width: 75%;
margin-right: 20px;
margin-top: 10px;
}