-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.css
87 lines (71 loc) · 1.23 KB
/
main.css
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
77
78
79
80
81
82
83
84
85
86
87
html{
scroll-behavior: smooth;
}
body{
margin: 0%;
padding: 0%;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a{
text-decoration: none;
color: inherit;
}
h1, footer, nav{
color: #5e3823;
}
#main-container, #pages-container, #logo-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#banner{
display: flex;
width: 100%;
height: 600px;
background-image: url('./assets/coffee-banner.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
nav{
display: flex;
justify-content: flex-end;
position: sticky;
top: 0%;
background-color: white;
font-size: 1.5em;
width: 100%;\
flex-wrap: wrap-reverse;
float: none;
list-style-type: none;
}
nav > div {
margin: 10px 10px 0px 10px;
}
nav > div:hover{
cursor: pointer;
}
.page{
min-height: 100vh;
width: 75%;
margin: 10px;
padding: 10px;
}
.page > p {
text-align: justify;
}
#about-us{
}
#logo-container > img{
height: 150px;
}
#meet-our-team{
}
#contact-us{
}
footer{
display: flex;
justify-content: center;
margin: 10px;
}