99 lines
2.1 KiB
HTML
99 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{{- .Site.Title -}}</title>
|
|
<!-- stylesheets -->
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
|
|
<link rel="stylesheet" href="/css/fontawesome.min.css" media="all">
|
|
<link rel="stylesheet" href="/css/all.min.css" media="all">
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
{{- partial "head.html" . -}}
|
|
|
|
<style>
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* do things */
|
|
|
|
.do-things {
|
|
background-color: #e5e9f2;
|
|
height: auto;
|
|
padding: 0;
|
|
padding-bottom: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.things-i-do {
|
|
font-family: 'Alata', sans-serif;
|
|
font-size: 25px;
|
|
}
|
|
|
|
.things {
|
|
height: auto;
|
|
}
|
|
|
|
.things-text {
|
|
height: 100px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.things-i-do {
|
|
padding-top: 7% !important;
|
|
}
|
|
|
|
.do-things-card {
|
|
padding-left: 15%;
|
|
padding-right: 15%;
|
|
padding-bottom: 0%;
|
|
padding-top: 0%;
|
|
}
|
|
}
|
|
|
|
/* about */
|
|
|
|
.about {
|
|
height: auto;
|
|
background-color: #e5e9f2;
|
|
}
|
|
|
|
.jop {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.about-me {
|
|
font-family: 'Alata', sans-serif;
|
|
font-size: 25px;
|
|
}
|
|
|
|
.about-content {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.about-content a:hover {
|
|
text-decoration-line: none;
|
|
color: black;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.about {
|
|
height: auto;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
|
|
{{- partial "sections/about.html" . -}}
|
|
{{- partial "sections/do_things.html" . -}}
|
|
|
|
{{- partial "footer.html" . -}}
|
|
{{- partial "scripts.html" . -}}
|
|
</body>
|
|
|
|
</html> |