-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
195 lines (170 loc) · 4.07 KB
/
styles.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
188
189
190
191
192
193
194
195
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
background-color: white;
position: relative;
}
.navbar {
position: -webkit-sticky;
position: sticky;
top: 0;
width: 100%;
height: 9%;
z-index: 10;
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
background-color: black;
color: black;
padding: 0px 0px;
}
.nav-list {
display: flex;
flex-direction: row;
position: relative;
right: 0px;
list-style: none;
}
.navbar a {
color: white;
font-weight: lighter;
margin: 0 12px;
text-decoration: none;
letter-spacing: 4px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar a:hover {
color: green;
}
.navbar a:active {
color: green;
}
.background-image {
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
position: absolute;
top: 0;
right: 0;
width: 66.666%; /* 2/3 of the page */
height: 100%;
overflow: hidden;
display: flex;
}
.background-image::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)),
url('morro-bay-wallpaper.jpeg'); /* Replace with the path to your image */;
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
overflow: hidden;
display: flex;
}
.about-image {
width: 250px; /* Set your desired width */
height: 250px; /* Set your desired height */
border-radius: 50%; /* Create a circular outline */
border: 5px solid white; /* Set the border color to match the background */
margin-left: 176.999px;
margin-top: 50px;
left: 0;
overflow: visible;
display: flex;
}
.about-image img {
width: 100%;
height: 100%;
top: 0;
object-fit: cover; /* This property will crop the image */
border-radius: 50%; /* Ensure the image inside the circle is also circular */
display: flex;
}
.about-text {
width: 33.333%;
height: 50%;
position: absolute;
bottom: 0;
left: 0;
margin-left: 50px;
text-align: center;
overflow: visible;
}
.about-text p {
color: black; /* Set the color of your text */
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 20px;
font-weight: lighter;
letter-spacing: 2px;
display: flex;
/* Add any other styles for your text */
}
.page-title {
display: flex;
justify-content: center;
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.blog-entry-title {
display: flex;
justify-content: center;
}
.blog-entry-text {
display: flex;
justify-content: center;
font-size: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.resume {
align-items: center;
margin-left: 25%;
margin-right: 25%
}
.resume-section {
display: flex;
font-size: 20px;
justify-content: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.resume-entry-title {
display: flex;
font-size: 16px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.resume-position-title{
justify-content: center;
font-size: 16px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.resume-entry-info {
display: inline-block;
justify-content: center;
font-size: 12px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.download-buttom {
color: green;
text-decoration: none;
}
.footer {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: white;
position: absolute;
overflow: hidden;
bottom: 0;
width: 100%;
height: 2.5rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}