-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (103 loc) · 1.62 KB
/
style.css
File metadata and controls
105 lines (103 loc) · 1.62 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
* {
margin: 0%;
padding: 0%;
overflow-x: hidden;
}
header {
background-color: white;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
overflow-y: hidden;
}
img#genbrun-logo {
width: 90px;
display: flex;
float: left;
margin-left: 10px;
}
img#burger-menu {
width: 50px;
height: 50px;
display: block;
float: right;
margin-right: 10px;
}
#menu-nav {
display: flex;
justify-content: space-between;
float: right;
margin-right: 3vw;
display: none;
}
.menunav {
color: rgb(110,86,77);
text-decoration: none;
margin: 5px;
font-family: sans-serif;
}
footer {
background-color: rgb(110,86,77);
color: white;
display: flex;
font-size: 10px;
}
section#footer {
margin: auto;
display: flex;
margin-bottom: 10px;
margin-top: 10px;
justify-content: space-between;
}
section#left {
margin-top: 10px;
margin-left: 20px;
float: left;
max-width: 200px;
}
section#right {
margin-top: 10px;
float: right;
margin-left: -20px;
}
section#logos {
padding: 45.5px 10px;
align-items: center;
margin: auto;
display: flex;
justify-content: space-between;
margin-right: 10px;
margin-left: 10px;
}
#ig {
min-width: 30px;
height: 30px;
}
#fb {
height: 30px;
min-width: 15px;
margin-left: 6px;
}
@media only screen and (min-width: 426px) {
img#genbrun-logo {
margin-left: 3vw;
}
img#burger-menu {
display: none;
}
#menu-nav {
display: flex;
}
section#footer {
font-size: 15px;
padding: 10px;
padding-bottom: 15px;
}
section#left {
margin-right: 8vw;
}
section#logos {
margin-left: 5vw;
}
}