forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·55 lines (45 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·55 lines (45 loc) · 1.09 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
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
background-image: cover;
text-align:center;
}
nav{
display: flex;
justify-content: space-between;
padding-left: 18rem;
padding-right: 18rem;
padding-top: 0.8rem;
}
nav .logo{
width: 1.5rem;
}
ul{
list-style-type: none;
display: flex;
flex-direction: row;
/* justify-content: space-between; */
}
li a{
text-decoration: none;
color: rgb(202, 192, 192);
padding-left: 1rem;
padding-right: 1rem;
}
ul li a:first-child{
color:black;
}
/* li {
float: left;
padding: 1rem;
} */
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/