This commit is contained in:
parent
eee1530ca6
commit
1fce0a6cf4
6
base.css
6
base.css
@ -16,9 +16,6 @@ main{
|
|||||||
.centered{
|
.centered{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.padded-2px{
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
.header{
|
.header{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -113,6 +110,9 @@ main{
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
|
.item-table > div > div > div{
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
.item-table-caption{
|
.item-table-caption{
|
||||||
display: table-caption;
|
display: table-caption;
|
||||||
caption-side: bottom;
|
caption-side: bottom;
|
||||||
|
2
dark.css
2
dark.css
@ -30,7 +30,7 @@ a{
|
|||||||
.main-table{
|
.main-table{
|
||||||
background-color: #0f0f0f;
|
background-color: #0f0f0f;
|
||||||
}
|
}
|
||||||
.item-table > div > div{
|
.item-table > div > div, .item-table-caption{
|
||||||
border-color: #F5DEB3FF;
|
border-color: #F5DEB3FF;
|
||||||
}
|
}
|
||||||
.image-box > a{
|
.image-box > a{
|
||||||
|
@ -33,15 +33,15 @@
|
|||||||
<div class="item-table">
|
<div class="item-table">
|
||||||
<div>
|
<div>
|
||||||
<div class="item-table-full">
|
<div class="item-table-full">
|
||||||
<div class="centered padded-2px"><h1>{{ .Data.About.Title }}</h1></div>
|
<div class="centered"><h1>{{ .Data.About.Title }}</h1></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-table-360">
|
<div class="item-table-360">
|
||||||
<div class="centered padded-2px"><h4>Email: <a href="mailto:{{ .Data.About.ContactEmail }}">{{ .Data.About.ContactEmail }}</a></h4></div>
|
<div class="centered"><h4>Email: <a href="mailto:{{ .Data.About.ContactEmail }}">{{ .Data.About.ContactEmail }}</a></h4></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="item-table-full">
|
<div class="item-table-full">
|
||||||
<div class="padded-2px">{{ .Data.About.GetContent }}</div>
|
<div>{{ .Data.About.GetContent }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-table-360">
|
<div class="item-table-360">
|
||||||
<div><a href="{{ .Data.About.ImageLocation }}"><img src="{{ .Data.About.ThumbnailLocation }}" alt="Image of Me." width="360px"></a></div>
|
<div><a href="{{ .Data.About.ImageLocation }}"><img src="{{ .Data.About.ThumbnailLocation }}" alt="Image of Me." width="360px"></a></div>
|
||||||
@ -58,19 +58,19 @@
|
|||||||
<div class="item-table">
|
<div class="item-table">
|
||||||
<div>
|
<div>
|
||||||
<div class="item-table-full">
|
<div class="item-table-full">
|
||||||
<div class="centered padded-2px"><h1>{{ .Name }}</h1></div>
|
<div class="centered"><h1>{{ .Name }}</h1></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-table-360">
|
<div class="item-table-360">
|
||||||
{{ if eq .GetStartDate .GetEndDate }}
|
{{ if eq .GetStartDate .GetEndDate }}
|
||||||
<div class="centered padded-2px"><h4>{{ .GetStartDate }}</h4></div>
|
<div class="centered"><h4>{{ .GetStartDate }}</h4></div>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<div class="centered padded-2px"><h4>{{ .GetStartDate }} - {{ .GetEndDate }}</h4></div>
|
<div class="centered"><h4>{{ .GetStartDate }} - {{ .GetEndDate }}</h4></div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="item-table-full">
|
<div class="item-table-full">
|
||||||
<div class="padded-2px">{{ .GetContent }}</div>
|
<div>{{ .GetContent }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-table-360">
|
<div class="item-table-360">
|
||||||
<div><video controls="" width="360">
|
<div><video controls="" width="360">
|
||||||
|
Loading…
Reference in New Issue
Block a user