-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (73 loc) · 1.14 KB
/
style.css
File metadata and controls
76 lines (73 loc) · 1.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/** Add any CSS you need to this file. */
/* add media query */
body,
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* display page layout: header main footer*/
body {
display: grid;
grid-template-areas:
'header'
'introduction'
'store'
'main'
'footer';
color: #302f32;
font-family: 'Alice', serif;
}
/* change header include nav bar */
#navigation_bar {
grid-area: navigation;
}
/* CSS for menu */
#store {
grid-area: store;
background-color: whitesmoke;
}
#shop {
background-color: whitesmoke;
}
#introduction{
grid-area: introduction;
background-color: whitesmoke;
}
main {
/*whitesmoke*/
padding-left: 5%;
padding-right: 5%;
background-color: whitesmoke;
grid-area: main;
}
#page_footer {
grid-area: footer;
display: flex;
background-color: #8c8d93;
}
#page_footer nav a {
color: white;
}
#email_form {
flex: 1;
}
#footer_address {
flex: 2;
}
h3,
h5 {
font-family: 'Sacramento', cursive;
}
.card {
background-color: transparent;
}
li {
cursor: pointer;
text-align: center;
}
.card-img-top {
cursor: pointer;
}
.card-title {
font-weight: 600;
}