-
Notifications
You must be signed in to change notification settings - Fork 0
/
discussion.html
124 lines (109 loc) · 2.44 KB
/
discussion.html
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html><title>Discussions</title>
<!--Refreshes the page every 3 minutes-->
<meta https-equiv = "Refresh" content = "60">
<style>
.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.buttondis {background-color = #000000}
*{
box-sizing: border-box;
}
.row {
display: flex;
}
/* Create three equal columns that sits next to each other */
.column {
flex: 5%;
padding: 3px;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #969292;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #000000;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #4d0099;
color: white;
}
.column {
color: #999999
}
.side {
color: #000000
}
aside {
width: 12%;
padding-left: 4px;
margin-top: 25px;
margin-right: 2px;
float: right;
background-color: #969292;
overflow: hidden;
}
.flux{
position: absolute;
top: 128;
left: 5;
color: #999999
}
.disc{
width: 95%;
height: 700%}
.out{
width: 95%;
height: 700%
}
.row {
display: flex;
}
.column {
flex: 5%;
padding: 3px;
}
</style>
<body bgcolor=#ddd>
<div class="topnav">
<a href="https://www.atmos.albany.edu/student/abirnbaum/index.html">Home</a>
<a href="https://www.atmos.albany.edu/student/abirnbaum/solar.html">Solar Images</a>
<a class = "active" href="https://www.atmos.albany.edu/student/abirnbaum/discussion.html" >SWPC Discussion</a>
</div>
</body>
<body>
<div class = "row">
<div class = "column">
<object class='disc' data="https://www.atmos.albany.edu/student/abirnbaum/Discussion_Outlook/discussion.txt"></object></div>
<div class = "column">
<object class ='out' data="https://www.atmos.albany.edu/student/abirnbaum/Discussion_Outlook/advisory-outlook.txt"></object>
</div></body>
<!-- script>
var frame = document.getElementById("myFrame");
frame.onload = function() {
var body = frame.contentWindow.document.querySelector('body');
body.style.color = 'white';
};
</script -->
</html>