Last active
August 29, 2015 13:59
-
-
Save kalimatas/10470673 to your computer and use it in GitHub Desktop.
Issues template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
* { | |
font-family: Arial, sans-serif; | |
} | |
.issue { | |
text-align: left; | |
width: 700px; | |
border: 1px solid black; | |
border-collapse: collapse; | |
margin-bottom: 20px; | |
} | |
.left { | |
width: 70px; | |
text-align: center; | |
vertical-align: top; | |
} | |
.big { | |
font-size: 25px; | |
} | |
.description { | |
min-height: 150px; | |
} | |
th, td { | |
padding: 6px; | |
border: 1px solid black; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- ½ --> | |
<table class="issue"> | |
<thead> | |
<tr> | |
<th class="left big">642</th> | |
<th class="big">Title here Title here Title here Title here Title here Title here </th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td></td> | |
<td><div class="description">Description here</div></td> | |
</tr> | |
<tr> | |
<td class="left big">2SP</td> | |
<td></td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment