104 lines
1.5 KiB
CSS
104 lines
1.5 KiB
CSS
/* Whole document */
|
|
body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 1rem;
|
|
color: #4c4f69;
|
|
line-height: 1.5;
|
|
width: 800px;
|
|
margin-inline: auto;
|
|
background: white;
|
|
padding: 10px 10px 10px 10px;
|
|
}
|
|
|
|
/*
|
|
.title {
|
|
display: none;
|
|
}
|
|
*/
|
|
|
|
/* Title of the resume */
|
|
h1 {
|
|
color: #df8e1d;
|
|
font-size: 2.1rem;
|
|
text-align: center;
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
/* Titles of categories */
|
|
h2 {
|
|
color: #df8e1d;
|
|
font-size: 1.6rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
h3 {
|
|
color: #dc8a78;
|
|
font-size: 1.3rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
h4 {
|
|
color: #8c8fa1;
|
|
font-size: 1.1rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 0.9rem;
|
|
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: #A6A6A6;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|