23 lines
222 B
CSS
23 lines
222 B
CSS
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
body {
|
|
padding: 10px;
|
|
}
|
|
|
|
.issue {
|
|
margin: 20px;
|
|
padding: 5px;
|
|
width: 60%;
|
|
border: 2px solid black;
|
|
}
|
|
|
|
.closed {
|
|
background-color: lightgrey;
|
|
}
|
|
|
|
.id {
|
|
font-size: 10.5px;
|
|
} |