-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (76 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (76 loc) · 1.41 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
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Lato&display=swap');
#nav-container{
background-color: #36384C;
border:1px solid transparent;
position:sticky;
top:0;
box-shadow:0px 3px 5px #11111156;
}
#wrapper{
width:min(1100px,100%);
}
#nav-small{
background-color: #36384C;
display: none;
position:absolute;
top:0;
left:0;
width:100vw;
height:100vh;
font-size:2em;
}
#nav-big{
width:300px;
font-size: 1.3em;
}
.nav-link{
transition: all 0.3s;
}
.nav-link:hover{
background-color:#849971;
}
#header{
background-image: url("Images/coffee-head.jpg");
background-size:cover;
background-position: center center;
height:600px;
}
#header h1{
font-family: 'Bitter', serif;
font-size:120px;
}
#header h2{
font-family: 'Lato', sans-serif;
font-size:30px;
}
#about{
background-color: #E9DCCD;
}
#about h1, #menu h1, #location .row:first-of-type h1{
font-size:34px;
font-family: 'Bitter', serif;
}
#about p, #menu p{
text-align: justify;
font-size:18px;
font-family: 'Lato', sans-serif;
}
#menu{
background-color: #36384C;
}
#menu .row:last-of-type{
font-family: 'Lato', sans-serif;
font-size:17px;
}
#location{
background-color: #E9DCCD;
}
@media screen and (max-width:800px) {
#header{
height: 230px;
}
#header h1{
font-size:45px;
}
}
// All the best-