forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (46 loc) · 828 Bytes
/
style.css
File metadata and controls
57 lines (46 loc) · 828 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
48
49
50
51
52
53
54
55
56
57
/**
* 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.
*
*/
body {
background-color: rgb(10, 97, 97);
}
header h1 {
display:flex;
justify-content: center;
color:rgb(241, 224, 207)
}
header, h1 {
color: white;
}
nav{
display: flex;
justify-content: right;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
la {
display: block;
width: 60px;
}
article :first-child {
color: whitesmoke;
background-color: black;
padding: 5px;
}
article p {
color: rgb(5, 5, 5);
background-color: rgb(250, 248, 247);
}
footer{
display: flex;
justify-content: center;
color: white;
}