Update common css file

This commit is contained in:
Tilen Majerle 2019-12-28 10:54:55 +01:00
parent adb14b8f9c
commit abb5ed487b

View File

@ -1,32 +1,61 @@
/* Center aligned text */ /* Center aligned text */
.center { .center {
text-align: center; text-align: center;
} }
/* Paragraph with main links on index page */ /* Paragraph with main links on index page */
.index_links { .index_links {
text-align: center; text-align: center;
} }
/* Index links a */ /* Index links a */
.index-links a { .index-links a {
display: inline-block; display: inline-block;
border: 1px solid #0E4263; border: 1px solid #0E4263;
padding: 3px 10px; padding: 3px 10px;
background: #2980B9; background: #2980B9;
border-radius: 4px; border-radius: 4px;
color: #FFFFFF; color: #FFFFFF;
} }
.index-links a:hover { .index-links a:hover {
background: #0E4263; background: #0E4263;
} }
/* Table header p w/0 margin */ /* Table header p w/0 margin */
table thead th { table thead th {
vertical-align: middle; vertical-align: middle;
} }
table thead th p { table thead th p {
margin: 0; margin: 0;
} }
/* Breathe output changes */
.breathe-sectiondef.container {
background: #f9f9f9;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #efefef;
}
.breathe-sectiondef.container .breathe-sectiondef-title {
background: #2980b9;
color: #FFFFFF;
padding: 4px;
margin: -10px -10px 0 -10px;
}
.breathe-sectiondef.container .function,
.breathe-sectiondef.container .member,
.breathe-sectiondef.container .class,
.breathe-sectiondef.container .type {
border-bottom: 1px solid #efefef;
}
.breathe-sectiondef.container .function:last-child,
.breathe-sectiondef.container .member:last-child,
.breathe-sectiondef.container .class:last-child,
.breathe-sectiondef.container .type:last-child {
border-bottom: none;
margin-bottom: 0;
}
/*# sourceMappingURL=common.css.map */