You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
background-color: Cyan; /* For browsers that do not support gradients */
10
+
background-image:linear-gradient(cyan, lime); /* Standard syntax (must be last) */
11
+
}
12
+
<script>
13
+
// No JavaScript data available yet
14
+
</script>
15
+
<style>
16
+
// From stylesheet
17
+
/* Start of stylesheet rules */
18
+
/* Transparent boxes */
19
+
div.background {
20
+
background:url(klematis.jpg) repeat;
21
+
border:2px solid black;
22
+
}
23
+
div.transbox {
24
+
margin-top:0px;
25
+
margin-bottom:0px;
26
+
margin-right:0px;
27
+
margin-left:0px;
28
+
background-color:#00BFFF; /* The text was there, the background was the wrong color. A new beautiful shade of blue was added to fix this - April 6th 2019 */
29
+
border:1px solid black;
30
+
opacity:0.6;
31
+
filter:alpha(opacity=80); /* For IE8 and earlier */
32
+
}
33
+
div.transboxp {
34
+
margin:1%; /* make sure this stays at 1%. At 5%, there is a large spacing issue between each new paragraph */
35
+
font-weight: bold;
36
+
color:#ffffff;
37
+
}
38
+
/* Sidebar */
39
+
body {
40
+
margin:0;
41
+
}
42
+
ul {
43
+
list-style-type: none;
44
+
margin:0;
45
+
padding:0;
46
+
width:16%;
47
+
background-color:#f1f1f1;
48
+
position: fixed;
49
+
height:100%;
50
+
overflow: auto;
51
+
}
52
+
lia {
53
+
display: block;
54
+
color:#000;
55
+
padding:8px16px;
56
+
text-decoration: none;
57
+
}
58
+
lia.active {
59
+
background-color:#4CAF50;
60
+
color: white;
61
+
}
62
+
lia:hover:not(.active) {
63
+
background-color:#555;
64
+
color: white;
65
+
}
66
+
/* Topbar */
67
+
/* Add a black background color to the top navigation */
68
+
.topnav {
69
+
background-color:#333;
70
+
overflow: hidden;
71
+
}
72
+
/* Style the links inside the navigation bar */
73
+
.topnava {
74
+
float: left;
75
+
color:#f2f2f2;
76
+
text-align: center;
77
+
padding:14px16px;
78
+
text-decoration: none;
79
+
font-size:17px;
80
+
}
81
+
/* Change the color of links on hover */
82
+
.topnava:hover {
83
+
background-color:#ddd;
84
+
color: black;
85
+
}
86
+
/* Add a color to the active/current link */
87
+
.topnava.active {
88
+
background-color:#4CAF50;
89
+
color: white;
90
+
}
91
+
/* Dropdown */
92
+
.dropdown {
93
+
position: relative;
94
+
display: inline-block;
95
+
}
96
+
97
+
.dropdown-content {
98
+
display: none;
99
+
position: absolute;
100
+
background-color:#f9f9f9;
101
+
min-width:160px;
102
+
box-shadow:0px8px16px0pxrgba(0,0,0,0.2);
103
+
padding:12px16px;
104
+
z-index:1;
105
+
}
106
+
107
+
.dropdown:hover .dropdown-content {
108
+
display: block;
109
+
}
110
+
/* Headings */
111
+
H1 {
112
+
color: black;
113
+
}
114
+
H2 {
115
+
color: black;
116
+
}
117
+
H3 {
118
+
color: black;
119
+
}
120
+
H4 {
121
+
color: black;
122
+
}
123
+
H5 {
124
+
color: black;
125
+
}
126
+
H6 {
127
+
color: black;
128
+
}
129
+
/* Dividers, paragraphs */
130
+
.center {
131
+
display: block;
132
+
margin-left: auto;
133
+
margin-right: auto;
134
+
width:50%;
135
+
}
136
+
// Note that it can not be centered if the width is set to 100% (full-width). !-->
0 commit comments