mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-05 20:37:53 +00:00
48266b302d
The build date is included in the footer.
56 lines
900 B
CSS
56 lines
900 B
CSS
/******************************
|
|
* PlantUMLServlet style sheet *
|
|
******************************/
|
|
|
|
/* Font */
|
|
* {
|
|
font-family: arial,helvetica,sans-serif;
|
|
}
|
|
|
|
/* Header */
|
|
#header {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Content */
|
|
#content {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 95%;
|
|
}
|
|
|
|
/* Form inputs */
|
|
#content textarea, #content input[type=text] {
|
|
background-color: #ffc;
|
|
font-family: monospace;
|
|
width: 100%;
|
|
}
|
|
|
|
/* XHTML tag */
|
|
#content code {
|
|
font-family: 'courier new',courier,monospace;
|
|
letter-spacing: -1pt;
|
|
}
|
|
|
|
/* Diagram */
|
|
#content #diagram {
|
|
text-align: center;
|
|
}
|
|
|
|
#content #diagram img {
|
|
border: medium solid green;
|
|
padding: 10px;
|
|
}
|
|
|
|
/* Footer */
|
|
#footer p {
|
|
background-color: #eee;
|
|
color: #666;
|
|
font-size: 0.7em;
|
|
padding: 2px;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|