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