-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (46 loc) · 808 Bytes
/
style.css
File metadata and controls
47 lines (46 loc) · 808 Bytes
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
*{
margin: 0;
padding: 0;
}
.container{
height: 100vh;
width: 100%;
background-image: url(images/background.ping);
background-position: center;
background-size: cover;
padding-left: 5%;
padding-right: 5;
box-sizing: border-box;
position: relative;
}
.navbar{
width: 100%;
height: 15vh;
margin: auto;
display: flex;
align-items: center;
}
.logo{
width: 40px;
cursor: pointer;
}
nav{
flex: 1;
padding-left: 60px;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 0px 20px;
}
.content h1{
font-size: 60px;
font-weight: 100px;
margin-top: 24px;
margin-bottom: 15px;
color: #232d60;
}
.content p{
font-size: 60px;
color: #232d60;
}