Skip to content

Instantly share code, notes, and snippets.

@Helfull
Created March 2, 2015 09:48
Show Gist options
  • Save Helfull/466e2adf86c58c21c299 to your computer and use it in GitHub Desktop.
Save Helfull/466e2adf86c58c21c299 to your computer and use it in GitHub Desktop.
it32_changelog_markup
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/uikit.min.css" />
<style>
.uk-alert {
margin-top: 0;
margin-bottom: 0;
}
.changelog-entry-icon {
width: 5%;
}
</style>
</head>
<body>
<div class="uk-container">
<div class="uk-panel-box uk-panel-box-secondary ">
<table class="uk-table changelog">
<tr class="uk-alert-danger changelog-entry">
<td class="uk-text-center changelog-entry-icon"><span class="uk-text-danger uk-icon-warning uk-icon-small"></span></td>
<td class="uk-text-middle changelog-entry-text">LogEntry 0</td>
</tr>
<tr class="uk-alert uk-text-primary changelog-entry">
<td class="uk-text-center changelog-entry-icon"><span class="uk-icon-info uk-icon-small"></span></td>
<td class="uk-text-middle changelog-entry-text">LogEntry 1</td>
</tr>
<tr class="uk-alert-warning changelog-entry">
<td class="uk-text-center changelog-entry-icon"><span class="uk-text-warning uk-icon-exclamation uk-icon-small"></span></td>
<td class="uk-text-middle changelog-entry-text">LogEntry 2</td>
</tr>
<tr class="uk-alert-success changelog-entry">
<td class="uk-text-center changelog-entry-icon"><span class="uk-text-success uk-icon-check uk-icon-small"></span></td>
<td class="uk-text-middle changelog-entry-text">LogEntry 2</td>
</tr>
</table>
<div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment