-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.css
54 lines (54 loc) · 999 Bytes
/
portfolio.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins',sans-serif;
}
.hero{
min-height: 100vh;
width: 100%;
background-color: #000;
background-image: url(Spiral-Galaxy.gif);
background-position: center;
background-repeat: no-repeat;
background-size: 70%;
color: #fff;
padding: 0 8%;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0;
font-size: 15px;
}
.logo{
width: 100px;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 30px;
}
nav ul li a{
color: #fff;
text-decoration: none;
}
.hero h1{
font-size: 45px;
margin-top: 0%;
}
.hero button{
background: #393939;
border: 0;
outline: none;
padding: 15px 35px;
color: #fff;
margin-top: 0%;
font-weight: 500;
letter-spacing: 1px;
cursor: pointer;
}
#element{
font-size: 35px;
}