-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
187 lines (179 loc) · 3.27 KB
/
style1.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
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
body{
background-color: #bff0fd;
font-family: Georgia, 'Times New Roman', Times, serif;
}
p{
font-size: 16px;
color: #38200c;
}
/*
formatting for the leaves of the tree
*/
.header{
background-image: url(images/leaves1.png);
background-repeat: repeat-x;
background-size: contain;
position: fixed;
height: 120px;
width: 100%;
padding: 0;
margin: 0 auto;
top: 0;
left: 0;
display: flex;
z-index: 100;
}
/*
trunk of the tree and the "signs" placed on it
*/
nav ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #6B492B;
position: fixed;
overflow: auto;
z-index: 10;
bottom: 85px;
top: 0;
left: 0;
}
nav li a{
font-size: 20px;
display: block;
text-align: center;
text-decoration-line: none;
border: 2px solid black;
background-color: #C4A484;
height: 20px;
padding: 15px;
margin-top: 10px;
margin-left: 15px;
margin-right: 15px;
color: black;
}
nav ul:first-child{
padding-top: 140px;
}
/*
colors for links on the page
*/
a:link{
color: #084e33;
}
a:visited{
color: #47192C;
}
a:hover{
color: #53000E;
}
/*
button styling
*/
button{
background-color: #C4A484;
text-align: center;
border: none;
font-size: 20px;
color: #38200c;
font-family: Georgia, 'Times New Roman', Times, serif;
}
/*
formatting for first content box on the page. margins are used
specifically so that the leaves and trunk do not cover any content.
*/
.intro{
width: 75%;
padding: 25px;
margin: 30px;
margin-top: 120px;
margin-left: 250px;
border: 2px solid black;
background-color: #C4A484;
overflow: hidden;
display: inline-block;
}
.intro h1{
text-align: center;
}
.intro iframe{
width: 900px;
height: 700px;
}
#resume{
text-align: center;
}
/*
formatting used for any content boxes following the first box (intro)
*/
.box{
width: 75%;
padding: 25px;
margin: 30px;
margin-left: 250px;
margin-bottom: 100px;
border: 2px solid black;
background-color: #C4A484;
overflow: hidden;
}
.box h1{
text-align: center;
}
.body-text{
display: inline-block;
}
#body-image img{
height: 200px;
width: 200px;
float: right;
padding-left: 10px;
padding-bottom: 10px;
}
/*
formatting for the two columns on qualifications
*/
.grid-container {
display: inline-grid;
width: 76.5%;
margin-left: 250px;
margin-bottom: 100px;
align-self: center;
justify-self: space-evenly;
justify-content: space-between;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.grid-child {
border: 2px solid black;
background-color: #C4A484;
width: 100%;
padding: 10px;
}
.grid-child h3{
text-align: center;
}
/*
formatting for the grass and image links at the bottom of the screen
*/
.footer{
width: 100%;
background-color: #8CBF6F;
height: 80px;
position: fixed;
display:flex;
flex-direction: row;
justify-content: space-evenly;
bottom: 0;
left: 0;
overflow: hidden;
text-align: center;
border: none;
margin-top: 100px;
padding-top: 5px;
text-decoration-line: none;
}
.footer img{
width: 75px;
height: 75px;
}