-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (78 loc) · 1.71 KB
/
styles.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
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'); /* Font-Awesome Icons */
body {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
font-family: Sans-serif;
line-height: 1.5em;
}
#header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
overflow: hidden; /* Disables scrollbars on the header frame. To enable scrollbars, change "hidden" to "scroll" */
background: #000000;
color: whitesmoke;
}
#nav {
position: absolute;
top: 100px;
left: 0;
bottom: 0;
width: 230px;
overflow: auto; /* Scrollbars will appear on this frame only when there's enough content to require scrolling. To disable scrollbars, change to "hidden", or use "scroll" to enable permanent scrollbars */
background: #EEE7DA;
}
#logo {
padding:10px;
}
main {
position: fixed;
top: 100px; /* Set this to the height of the header */
left: 230px;
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
}
img {
max-width: 500px;
max-height: 500px;
border-style: inset;
border-width: 5px;
border-color: #000000;
}
.img-container {
display: inline-block;
padding: 10px;
}
.innertube {
margin: 15px; /* Provides padding for the content */
}
p {
color: #000000;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul a {
color: #000000;
text-decoration: none;
}
a:hover {
color: gray;
}
/*IE6 fix*/
* html body{
padding: 100px 0 0 230px; /* Set the first value to the height of the header and last value to the width of the nav */
}
* html main{
height: 100%;
width: 100%;
}