101 lines
1.4 KiB
CSS
101 lines
1.4 KiB
CSS
/* Whole document */
|
|
body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 0.8rem;
|
|
color: black;
|
|
line-height: 1.5;
|
|
width: 800px;
|
|
margin-inline: auto;
|
|
background: white;
|
|
padding: 10px 10px 10px 10px;
|
|
}
|
|
|
|
/*
|
|
.title {
|
|
display: none;
|
|
}
|
|
*/
|
|
|
|
/* Title of the resume */
|
|
h1 {
|
|
font-size: 1.6rem;
|
|
text-align: center;
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
/* Titles of categories */
|
|
h2 {
|
|
font-size: 1.4rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.2rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1.0rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 0.7rem;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding-bottom: 9px;
|
|
}
|
|
|
|
/* Definitions */
|
|
dt {
|
|
float: left;
|
|
clear: left;
|
|
width: 17%;
|
|
font-weight: bold;
|
|
}
|
|
dd {
|
|
margin-left: 17%;
|
|
}
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/* Links */
|
|
a {
|
|
text-decoration: none;
|
|
color: #1e66f5;
|
|
}
|
|
|
|
a:hover, a:active {
|
|
background-color: #7287fd;
|
|
color: #FFFFFF;
|
|
text-decoration: underline;
|
|
text-shadow: 1px 1px 1px #333;
|
|
}
|
|
|
|
/* Horizontal separators */
|
|
hr {
|
|
color: black;
|
|
}
|
|
|
|
/* List spacing */
|
|
ul, ol {
|
|
padding-left: 1em; /* Keeping padding relative to the font size of the list */
|
|
}
|
|
|
|
li {
|
|
margin-top: 0.25em;
|
|
}
|
|
|
|
p, li {
|
|
margin-top: 0;
|
|
line-height: 1.6;
|
|
}
|
|
|