-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (129 loc) · 2.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins';
}
/* Main Container */
section:first-child::after{
/* border: 5px solid rgb(9, 255, 103); */
content: "";
width: 100vw;
height: 100vh;
background: url(./assets/bg.png) no-repeat;
background-size: 100% 100%;
background-position: center;
position: absolute;
margin-top: 0;
}
/* Navigation bar */
.navbar{
width: 100vw;
height: 18vh;
/* border: 3px solid red; */
background-color: black;
position: relative;
color: white;
}
.navbar img{
/* width: 90px;
height: 30px; */
width: 120px;
height: 40px;
position: absolute;
top: 30px;
left: 110px;
cursor: pointer;
}
.line{
position: absolute;
height: 1.5px;
background-color: #d5d5d5;
top: 50px;
left: 240px;
display: block;
width: 54px;
transform: rotate(90deg);
}
.list{
position: absolute;
width: 980px;
height: 30px;
left: 345px;
top:30px;
color: #fff;
text-align: center;
}
.list li{
list-style: none;
float: left;
margin: 10px 30px;
width: 49px;
height: 23px;
cursor: pointer;
}
.list li:nth-child(4){
margin-left: 65px;
}
.list li:hover{
color: #ba0cc5;
}
.button-small{
width: 133px;
height: 40px;
background-color: #ba0cc5;
text-align: center;
border-radius: 9px;
color: #fff;
position: absolute;
right: 83px;
top: 30px;
cursor: pointer;
}
.button-small:hover{
color: #000;
background-color: #fff;
border: 2px solid #000;
}
/* Hero Section */
.hero{
position: relative;
width: 100vw;
height: 88vh;
text-align: center;
}
.hero h1{
font-size: 57px;
width: 606px;
font-weight: bold;
color: #fff;
position: absolute;
left: 400px;
top: 80px;
}
.hero p{
position: absolute;
width: 606px;
top: 270px;
left: 390px;
font-size: 21px;
color: #fff;
}
.button-large{
font-size: 21px;
color: #fff;
position: absolute;
left: 560px;
top: 370px;
background-color: #ba0cc5;
border: none;
width: 260px;
height: 40px;
text-align: center;
border-radius: 10px;
cursor: pointer;
}
.button-large:hover{
color: #ba0cc5;
background-color: #fff;
}