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
75 lines (52 loc) · 974 Bytes
/
style.css
File metadata and controls
75 lines (52 loc) · 974 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
66
67
68
69
70
71
72
73
74
75
/* Add your styling here */
@media (min-width: 992px)
{
.container,
.container-lg,
.container-md,
.container-sm
{
max-width: 960px;
display: flex;
flex-direction: row-reverse;
}
.h1-p {
display: flex;
flex-direction: column;
height: 2em;
width: auto;
text-align:end ;
}
}
body {
font-family: 'Nunito', sans-serif;
background-color: burlywood;
}
.navbar-light .navbar-toggler {
flex-direction: row-reverse;
}
.nav-link {
display: flex;
flex-direction: row-reverse;
}
.header .nav h2 {
flex-direction: row;
}
.navbar {
justify-content: flex-end;
}
.footer .div-footer .join-ul li{
list-style: none;
display: flex;
flex-direction: row;
}
.footer .div-footer .join-ul{
display: flex;
}
}
.footer .div-footer {
display: flex;
justify-content: center;
}
h1 {margin: 20px;}
h2 {margin: 10px;}