This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (97 loc) · 2.33 KB
/
styles.css
File metadata and controls
112 lines (97 loc) · 2.33 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
/*style for the whole nav bar*/
nav{
position: fixed;
left: 10px;
}
/*style for each option in the nav*/
nav a{
float: left;
text-decoration: none;
padding: 14px 16px;
color: #FFF;
background-color: #333;
border-right: solid #bbb;
border-left: solid #bbb;
}
/*change color when hovering over an option in the nav bar*/
nav a:hover {
background-color: #999;
}
/*change background color of option in nav bar where the user is currently at*/
.active {
background-color: #4CAF50;
}
/*style for the background image. this has to cover the whole page*/
.bgImg{
background-repeat: no-repeat;
background-position: center;
background-size: cover;
width:100%;
height:620px;
}
/*style for the logo. this has to be centered on the background image and a large font size*/
.logo{
position: absolute;
bottom:10%;
left:40%;
color: #000;
font-size: 70px;
/*text shadow used for easier reading*/
text-shadow: #FFF 1px 1px 2px;
}
/* used to center the topic of the page below the image*/
.bodyTop{
text-align: center;
}
/*style for the plantlove icon with a clickable link shown in html*/
.plantLove{
background: linear-gradient(to bottom, rgba(169,219,128,1) 0%,rgba(150,197,111,1) 100%);
margin: 0px;
color: white;
text-decoration:none;
/*display used to only apply the background color where text is and not the whole block*/
display: inline-block;
font-family: arial;
}
/*a quick class that will fix margin problems when writing the body*/
.marginFix{
margin-top: 0px;
margin-left: 100px;
margin-right: 100px;
}
/*style for the whole table in membership*/
table {
width: 400;
border-collapse: collapse;
text-align:left;
}
/*style for each row in the tables*/
th, td{
height: 50px;
border-bottom: 1px solid #ddd;
}
/*style for the whole body*/
body{
font-size:1.2em;
height: 50%;
margin: 0;
background: linear-gradient(to bottom, rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
}
/*style for the whole footer*/
footer {
height: 100%;
background: linear-gradient(to bottom, rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%);
}
footer a{
color:white;
}
/*style for the text in footer*/
.generalInfo{
color:white;
font-size: .9em;
font-family:arial;
text-align:center;
margin: 40px;
/*padding used to seperate the body from the footer to have text more south*/
padding-top: 10px;
}