mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2025-06-16 09:26:40 +00:00
43 lines
698 B
CSS
43 lines
698 B
CSS
h2:after {
|
|
content: " ";
|
|
display: block;
|
|
margin: 5px auto 5px;
|
|
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);
|
|
}
|
|
|
|
body > ul > li > ul > li {
|
|
font-weight: 100;
|
|
}
|
|
|
|
p {
|
|
font-size: medium;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
article > p {
|
|
margin-left: 0;
|
|
}
|
|
|
|
body {
|
|
margin: auto 15% 5em 10%;
|
|
}
|
|
|
|
article {
|
|
padding: 0em 1em 2em;
|
|
border: 5px solid black;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
header > h3 {
|
|
font-size: xx-large;
|
|
margin: auto;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|