1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-01 08:00:48 +00:00
plantuml-server/content/plantuml.css

41 lines
634 B
CSS
Raw Normal View History

/******************************
* PlantUMLServlet style sheet *
******************************/
2011-02-18 14:44:42 +00:00
/* Font */
* {
font-family: sans-serif;
}
/* Header */
#header {
margin-left: auto;
margin-right: auto;
text-align: center;
}
2011-02-18 14:44:42 +00:00
/* Content */
#content {
margin-left: auto;
margin-right: auto;
width: 95%;
}
/* Form inputs */
#content textarea, #content input[type=text] {
2011-02-18 14:44:42 +00:00
background-color: #ffc;
font-family: monospace;
width: 100%;
}
/* XHTML tag */
#content code {
font-family: monospace;
}
/* Diagram */
#content img#diagram {
2011-02-18 14:44:42 +00:00
border: medium solid green;
padding: 10px;
}