website/css/style.css
2019-06-12 14:25:56 +02:00

121 lines
1.9 KiB
CSS

body {
max-width: 800px;
font-family: sans-serif;
font-size: 12pt;
line-height: 1.2;
padding-left: 2ch;
padding-right: 3ch; /* for scrollbar */
margin: 0 auto;
background-color: #fdf6e3;
color: #586e75; /*base01*/
}
h1 {
color: #d33682; /* magenta */
}
h2 {
color: #d33682; /* magenta */
}
h3 {
color: #cb4b16; /* orange */
}
div#banner {
height: 50px;
/*background-color: #2aa198;*/ /* cyan */
background-color: #268bd2; /* blue */
}
a {
color: #268bd2; /* blue */
text-decoration: none;
}
div#navigation {
background-color: #268bd2; /* blue */
text-align: center;
border-bottom: 4px solid black;
text-transform: uppercase;
margin-bottom: 30px;
}
div#navigation a {
color: white;
text-decoration: none;
background-color: black;
padding: 3px 10px 3px 10px;
margin: 0px 10px 0px 10px;
}
blockquote {
background-color: #eee8d5; /* base2 */
font-style: italic;
padding: 10px 10px 10px 10px;
}
/*div.figure {
float: right;
margin: 20px 0px 20px 20px;
}
div.figure p.caption {
text-align: center;
font-style: italic;
}*/
div#avatar {
margin-left: auto;
margin-right: auto;
width: 200px;
height: 200px;
padding-bottom: 20px;
}
div#avatar img {
width: 200px;
height: 200px;
border: 5px solid;
border-color: black;
border-radius: 200px;
box-shadow: 5px 5px 10px #888888;
}
div#fabs-icon a:link {
margin: 20px 5px;
color: #586e75;
}
div#fabs-icon a:visited {
color: #586e75;
}
div#fabs-icon a:hover {
color: #268bd2;
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-auto-rows: minmax(100px, auto);
gap: 10px;
grid-gap: var(gap); /* fallback */
}
.project {
border: 1pt solid #ddd;
font-size: 14pt;
text-align: center;
}
#footer {
max-width: 800px;
margin: 0 auto;
padding-top: 40px;
padding-bottom: 20px;
color: #93a1a1;
text-align: center;
font-size: small;
}