-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (75 loc) · 1.28 KB
/
style.css
File metadata and controls
75 lines (75 loc) · 1.28 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
*{
margin: 0;
padding: 0;
font-family: "Poopins", "Helvetica";
}
body{
background: url("./assets/bg.png") no-repeat center center fixed;
}
.logo{
width: 7%;
position: relative;
left: 60px;
top: 25px;
}
.line{
display: flex;
width: 1px;
height: 30px;
background: #ffffff;
position: relative;
left: 200px;
bottom: 10px;
}
.list{
display: flex;
flex-direction: row;
list-style-type: none;
position: relative;
left: 300px;
bottom: 35px;
}
.list-item{
margin: 0px 20px;
}
.navbar{
background-color: #000;
color: #ffffff;
}
.button-small{
position: relative;
left: 1100px;
bottom: 50px;
padding: 5px 20px;
border: none;
border-radius: 5px;
background-color: #BA0CC5;
color:#E0DBE6;
}
.hero-heading{
font-size: 60px;
position: relative;
top: 110px;
width: 50%;
left: 380px;
color: #E0DBE6;
}
.hero-description{
position: relative;
top: 120px;
left: 420px;
color: #E0DBE6;
font-size: 20px;
}
.button-large{
position: relative;
top: 150px;
left: 500px;
font-size: 19px;
font-family: "roboto", "sans-serif";
padding: 10px 40px;
border: none;
border-radius: 7px;
background-color: #BA0CC5;
color: #E0DBE6;
}