forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 857 Bytes
/
style.css
File metadata and controls
65 lines (54 loc) · 857 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
58
59
60
61
62
63
64
65
html {
height: 100%;
width: 100%;
}
body {
background-color: #d2691e;
font-family: Times;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#introduction {
display: flex;
}
.slider {
display: flex;
justify-content: space-between;
width: 500px;
}
header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.main-img {
height: 250px;
width: 300px;
}
#header-img {
margin: 0px 500px 0px 25px;
}
.nav-links {
justify-content: center;
}
nav ul {
display: flex;
list-style-type: none;
justify-content: space-between;
}
nav ul li {
background: white;
width: 70px;
border-radius: 20px;
}
.main-footer h3 {
display: flex;
flex-direction: column;
text-align: center;
}
.main-footer p {
justify-content: flex-end;
color: darkgreen;
}