mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2025-06-15 17:06:39 +00:00
121 lines
1.8 KiB
CSS
121 lines
1.8 KiB
CSS
h2 {
|
|
text-transform: uppercase;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
h2:after {
|
|
content: " ";
|
|
display: block;
|
|
margin: 1px auto 1px;
|
|
border: 2px solid #d0d0d0;
|
|
border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
p {
|
|
font-size: medium;
|
|
/* margin-left: 1em; */
|
|
}
|
|
|
|
body {
|
|
max-width: 1000px;
|
|
/* margin: auto 15% 5em 10%; */
|
|
margin: auto;
|
|
padding-left: 2em;
|
|
padding-right: 2em;
|
|
padding-bottom: 5em;
|
|
}
|
|
h1 {
|
|
margin-top: 10px;
|
|
}
|
|
a:visited {
|
|
color: cornflowerblue;
|
|
}
|
|
|
|
dl {
|
|
margin-top: .5em;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
dd {
|
|
padding-left: 1.2em;
|
|
padding-top: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
padding-left: 0;
|
|
}
|
|
dd > ul {
|
|
text-indent: -.2em;
|
|
margin-left: 1em;
|
|
padding-left: 0;
|
|
}
|
|
|
|
article {
|
|
border-radius: 20px;
|
|
background-color: whitesmoke;
|
|
width: 50%;
|
|
min-width: 350px;
|
|
box-shadow: 10px 10px 27px 5px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
article > a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
article > a:hover {
|
|
color: black;
|
|
}
|
|
|
|
article > a:visited {
|
|
color: black;
|
|
}
|
|
|
|
article > a > img {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-radius: 20px 20px 0px 0px;
|
|
}
|
|
|
|
article > a > h3 {
|
|
text-align: center;
|
|
text-decoration: none;
|
|
margin: auto 0.25em 0.25em 0.25em;
|
|
padding-top: 1.25em;
|
|
}
|
|
|
|
article > a > p {
|
|
padding: 0 0.25em 1em 0.25em;
|
|
}
|
|
|
|
#printbutton {
|
|
font-size: 150%;
|
|
margin: 1.5em;
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
background-color: lightskyblue;
|
|
animation: pulse-animation 10s infinite;
|
|
}
|
|
|
|
@keyframes pulse-animation {
|
|
0% {
|
|
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
|
|
}
|
|
20%,
|
|
100% {
|
|
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
|
|
}
|
|
}
|
|
|
|
#onlyprint {
|
|
visibility: hidden;
|
|
display: none;
|
|
}
|