io.muserver.resources.api.css Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
html {
box-sizing: border-box;
padding: 0;
margin: 0;
}
* {
box-sizing: inherit;
}
body {
background-color: #e2e1e0;
padding: 0 0 200px;
margin: 0;
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif, serif;
}
h1 {
margin: 0;
padding: 20px 4px;
background-color: #209CEE;
color: white;
text-align: center;
}
main {
margin: 0 auto;
padding: 20px;
max-width: 1000px;
}
a {
color: #1c77b9;
}
a:hover {
color: #21A7FF;
}
.preamble {
padding: 20px 4%;
}
.apiMetaData {
font-size: smaller;
color: #202b4d
}
.tagContainer {
margin-top: 30px;
margin-bottom: 30px;
}
h2 {
background-color: #209CEE;
color: White;
padding: 20px 10px;
font-size: 17pt;
margin: 100px 0 0;
}
.operation {
background-color: white;
margin: 20px 4%;
padding: 20px 4%;
border-radius: 2px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
max-width: 2000px;
}
.deprecated {
color: #AAAAAA;
}
table {
border-collapse: collapse;
border-bottom: #209CEE solid 1px;
background: #fff;
width: 90%;
text-align: left;
margin: 20px 5%;
}
thead {
background-color: #21a7ff;
color: #FFFFFF;
}
th, td {
text-align: left;
padding: 3px;
}
tr:nth-of-type(even) {
background-color: #eaeffe;
}
table.parameterTable, table.responseTable {
table-layout: fixed;
}
.responseTable th:nth-of-type(-n+2), .parameterTable th:nth-of-type(-n+2) {
width: 25%;
}
tbody tr:hover td {
color: #209CEE;
}
table a {
overflow-wrap: break-word;
}
table.dirListing .size {
text-align: right;
padding-right: 20px;
}
table.dirListing .dir {
font-weight: bold;
}
p {
padding: 10px;
}