-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
241 lines (231 loc) · 4.44 KB
/
style.css
File metadata and controls
241 lines (231 loc) · 4.44 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
style
{
box-sizing: border-box;
font-family: sans-serif;
}
/* Various headers and text styling */
h1
{
text-align: center;
color: #008989;
font-size: 45px;
display:block;
box-sizing: border-box;
padding: 8px 8px;
background-color: rgba(154, 108, 99, 0.5);
text-shadow: 2px 2px rgba(154, 108, 99, 0.8);
box-shadow: 6px 6px rgba(154, 108, 99, 0.2);
border: 2px solid rgba(154, 108, 99, 0.5);
}
h2{
text-align: center;
color:rgba(154, 108, 99, 0.8);
display:block;
padding: 6px 6px;
background-color: rgba(255, 255, 255, 0.65);
font-size: 40px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: rgba(154, 108, 99);
}
h3{
color: rgba(154, 108, 99);
}
h4
{
color: rgba(154, 108, 99, 0.8);
}
p{
color:#9a6c63;
word-wrap: break-word;
}
/* Styles makes sure text column stays where its supposed to */
.column
{
float: left;
box-sizing: border-box;
}
.information
{
padding: 10;
width: 61%;
margin-left: 21%;
word-wrap: break-word;
background-color: rgba(255, 255, 255, 0.5);
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Navigation styles */
ul#nav {
list-style-type: none;
margin: 0;
padding: 0;
width: 20%;
background-color: rgba(255, 255, 255, 0.7);
height: 100%;
position: fixed; /* Make it stick, even on scroll */
overflow: auto; /* Enable scrolling if the sidenav has too much content */
}
li#nav a {
font-size: 20px;
display: block;
color: #9a6c63;
padding: 8px 16px;
text-decoration: none;
}
li#nav a:hover {
background-color: #9a6c63;
color: white;
}
/*styling regular lists */
li a
{
color:#008989;
text-decoration: none;
}
dd
{
color: rgba(154, 108, 99, 0.8);
}
li
{
color: rgba(154, 108, 99, 0.8);
}
li b
{
color:rgba(154, 108, 99, 0.8);
}
/* Background of each page styles */
/*Which, by the way, it's ugly for every page to be a different color.
It. Is. Ugly. So these are just sliiiigghhttly different colors to furfill my requirements. I refuse to make it completely ugly. */
/* ms.rioux i hope you know this physically pained me to do. It hurt me to make all of these different colors. It hurt. I value my grade so much that I treked through this abomination */
body#succulents
{
background-color:#b4840d;
}
body#easyPlants
{
background-color:#d05d47;
}
body#advancedPlants
{
background-color:#546978;
}
/*Image styles*/
img {
float: right;
border-radius: 8px;
position: absolute;
left: 82%;
width: 250px;
height: 150px;
}
img#bearPaw, img#orchid
{
top:15%;
}
img#repottingSucculent, img#fern
{
top: 40%;
}
img#repottingSucculent2, img#africanViolets
{
top: 65%;
}
/* Styles for iframes (vids and PDFs)*/
iframe
{
float: right;
top: 90%;
border-radius: 8px;
position: absolute;
left: 82%;
}
iframe#easyPlantPDF
{
float: right;
top: 95%;
border-radius: 8px;
position: absolute;
left:21%;
}
/*sets highlight color */
mark
{
background-color: rgba(0,137,137,0.3);
}
/*Styles for the table */
tbody {
font-size: 90%;
font-style: italic;
}
table {
border-collapse: collapse;
border: 2px solid rgba(154, 108, 99);
letter-spacing: 1px;
font-size: 0.8rem;
}
td, th {
border: 1px solid rgba(154, 108, 99);
padding: 10px 20px;
color:white;
}
th {
background-color:rgba(154, 108, 99, 0.8);
}
td {
text-align: center;
}
tr:nth-child(even) td {
background-color: rgba(154, 108, 99, 0.6);
}
tr:nth-child(odd) td {
background-color: rgba(154, 108, 99, 0.4);
}
caption {
padding: 10px;
}
/*Organization of the form/ styles for form */
input[type=text], select{
width: 100%; /* Full width */
padding: 12px; /* Some padding */
border: 1px solid #9a6c63; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */
margin-top: 6px; /* Add a top margin */
margin-bottom: 16px; /* Bottom margin */
resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
label
{
color : #008989;
}
/*misc comment for testing purposes*/
input[type=submit] {
background-color: rgba(154, 108, 99, 0.8);
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color:#008989;
}
.container {
border-radius: 5px;
background-color: rgba(154, 108, 99, 0.4);
padding: 20px;
}
/*Styles for my letter example */
address#myAdress
{
text-align: right;
}
h5
{
font-size: 20px;
color:#9a6c63;
}