-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
45 lines (42 loc) · 733 Bytes
/
style2.css
File metadata and controls
45 lines (42 loc) · 733 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
body {
display: grid;
grid-template-areas:
'navigation_main'
'main'
'footer';
font-family: 'Alice', serif;
}
main{
background-image: url("images/alina-grubnyak-IsxaFsXi2rs-unsplash.jpg") ;
background-size: cover;
color: #6F6863;
grid-area: main;
}
#navigation_main {
grid-area: navigation_main;
background-color: #ded6d3;
color:8FA09F
}
.navbar-nav li a { color:#8FA09F}
h3,h5 {
font-family: 'Sacramento', cursive;
color: #17A2B9;
font-weight: 500;
}
#navigation_main li a{
color: #17A2B9;
}
#page_footer {
grid-area: footer;
display: flex;
background-color: #ded6d3;
}
#page_footer nav a i{
color: #17A2B9;
padding: 5%}
#email_form {
flex: 1;
}
#footer_address {
flex: 2;
}