1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-10-01 00:09:08 +00:00
plantuml-server/content/plantuml.css
Maxime Sinclair 48266b302d Little enhancements of the look of the main page.
The build date is included in the footer.
2011-03-31 16:20:15 +02:00

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%;
}