-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadernav-improved-slightly-big-gap-right.css
108 lines (91 loc) · 1.9 KB
/
headernav-improved-slightly-big-gap-right.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
html,body {
height:100%;
width:100%;
padding:0;
margin:0;
}
body {
background-color: #e5e5e5;
height:100%;
}
header, nav, section {
display: block;
}
body, header, nav {
margin: 0;
padding: 0;
height: 100%;
}
header {
border-bottom: 2px solid;
height: 100px;
background-color: orange;
text-align: right;
}
nav {
display:block;
background-color: black;
float: left;
width: 200px;
border-right: 2px solid;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav li a {
display: block;
color: white;
margin-bottom: 2px;
padding: 15px 30px;
text-decoration: none;
background-color: grey;
}
nav li a:hover {
background-color: #555;
color: white;
}
section {
padding: 1px;
padding-left: 220px;
background-color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
footer {
display:block;
position:relative;
float: left;
height: 100%;
width: 100%;
bottom:0%;
background-color: #242729;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: white;
text-align: right;
}
footer p {
padding-left: 20px;
}
/*new stuff */
/* Wrapper */
#wrapper {
display: flex;
display: -webkit-flex;
display: -ms-flex;
margin: 0px auto;
padding: 0px;
height: 90%;
min-height: fit-content;
}
/* Content */
#content
{
width: -webkit-fill-available;
}
content{ /* Make Footer stick to bottom*/
display:block;
height:92.1%;
position:fixed;
}