177 lines
2.8 KiB
CSS
177 lines
2.8 KiB
CSS
body {
|
|
font-size: 14px;
|
|
font-family: 'Merriweather', serif;
|
|
line-height: 1.8;
|
|
color: #d9d9d9;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 35px;
|
|
text-transform: uppercase;
|
|
color: #b3b3b3;
|
|
font-weight: 600;
|
|
}
|
|
|
|
a {
|
|
color: #cccccc;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.clear_top {
|
|
font-size: 40px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.card-img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 20%;
|
|
max-height: 80%;
|
|
max-width: 80%;
|
|
border-radius: 20%;
|
|
border-style:
|
|
}
|
|
|
|
.card-img:hover {
|
|
-webkit-transform: scaleX(-1);
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.list-inline-item {
|
|
size: 15px;
|
|
color: #00004d;
|
|
}
|
|
|
|
.skill {
|
|
height: 45px;
|
|
}
|
|
|
|
.show_first {
|
|
display: block;
|
|
}
|
|
|
|
.show_hover {
|
|
display: none;
|
|
}
|
|
|
|
|
|
.project-folder {
|
|
background-color: #8cf5f5;
|
|
color: #1e3332;
|
|
border: 1px solid grey;
|
|
}
|
|
|
|
.project-head {
|
|
padding: 15px;
|
|
background-color: #548f8f;
|
|
}
|
|
|
|
.project a {
|
|
color: black;
|
|
}
|
|
|
|
.certifications {
|
|
background-color: #253ab7;
|
|
color: #7599c4;
|
|
}
|
|
|
|
.cert-img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
background: rgb(0, 0, 0);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
color: #f1f1f1;
|
|
width: 100%;
|
|
transition: .5s ease;
|
|
opacity: 0;
|
|
color: white;
|
|
font-size: 15px;
|
|
padding: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.cert-container {
|
|
position: relative;
|
|
width: 50%;
|
|
max-width: 200px;
|
|
margin: 5px;
|
|
}
|
|
.cert-container:hover .overlay {
|
|
opacity: 1;
|
|
}
|
|
|
|
.modal {
|
|
display: none; /* Hidden by default */
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1; /* Sit on top */
|
|
padding-top: 100px; /* Location of the box */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
overflow: auto; /* Enable scroll if needed */
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
|
|
}
|
|
|
|
/* Modal Content (image) */
|
|
.modal-content {
|
|
margin: auto;
|
|
display: block;
|
|
width: 80%;
|
|
max-width: 700px;
|
|
}
|
|
/* Add Animation */
|
|
.modal-content, #caption {
|
|
-webkit-animation-name: zoom;
|
|
-webkit-animation-duration: 0.6s;
|
|
animation-name: zoom;
|
|
animation-duration: 0.6s;
|
|
}
|
|
|
|
@-webkit-keyframes zoom {
|
|
from {
|
|
-webkit-transform: scale(0)
|
|
}
|
|
|
|
to {
|
|
-webkit-transform: scale(1)
|
|
}
|
|
}
|
|
|
|
@keyframes zoom {
|
|
from {
|
|
transform: scale(0)
|
|
}
|
|
|
|
to {
|
|
transform: scale(1)
|
|
}
|
|
}
|
|
|
|
/* The Close Button */
|
|
.close {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 35px;
|
|
color: #f1f1f1;
|
|
font-size: 40px;
|
|
font-weight: bold;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #bbb;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|