-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (63 loc) · 1.15 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
*{
margin: 0;
padding:0;
box-sizing: border-box;
}
nav {
display: flex;
justify-content: flex-end;
color: white;
background-color:black;
width: 100%;
padding: 20px;
}
nav img{
margin-right: auto;
height: 100px;
border-radius: 8px;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 600;
padding: 20px;
font-size: 20px;
font-weight: 700;
}
#hero {
color: white;
background-color: black;
position: relative;
clip-path: polygon(50% 0%, 100% 0%, 100% 98.20%, 59% 85%, 0px 65%, 0px 0px);
}
#hero h1 {
background: linear-gradient(to right,
white,
white,
pink,
rgb(248, 167, 181),
rgb(84, 233, 84),
rgb(56, 190, 56),
green);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
width: 600px;
font-size: 50px;
margin-left: 10px;
height: 500px;
padding-top: 30px;
}
.HeroText {
position: absolute;
float: right;
text-align: right;
font-size: 25px;
top: 200px;
left: 800px;
margin-top: 20px;
width: 500px;
}