mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-17 01:35:13 +00:00
41 lines
634 B
CSS
41 lines
634 B
CSS
/******************************
|
|
* PlantUMLServlet style sheet *
|
|
******************************/
|
|
|
|
/* Font */
|
|
* {
|
|
font-family: 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: monospace;
|
|
}
|
|
|
|
/* Diagram */
|
|
#content img#diagram {
|
|
border: medium solid green;
|
|
padding: 10px;
|
|
}
|