Skip to content
Snippets Groups Projects
Commit caa6efa2 authored by Dmitry Petrov's avatar Dmitry Petrov Committed by Jonas Höppner
Browse files

convert_md2html: restore several css rules

- fix h1 color
- fix missing gorizontal line above h1
- increased h2 font size
- fix missing borders for table
- restore link style
parent 28a1bc5e
No related branches found
No related tags found
1 merge request!385Documentation: Update the style for the generated html file
......@@ -36,17 +36,60 @@ h1, h2, .footer {
h1 {
font-size: 22px;
margin-bottom: 5px;
color: #FFFFFF;
color: #666666;
border-top: 0.5px solid #585858;
}
h2 {
margin-bottom: 5px;
font-size: 14px;
font-size: 18px;
color: #666666;
}
table {
margin-bottom: 24px;
border-spacing: 0;
border-bottom: 2px solid #e42618;
border-top: 2px solid #d1d1d1;
max-width: 100%;
width: 100%
}
table th {
padding: 3px 10px;
background-color: white;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #d1d1d1;
}
table td {
padding: 3px 10px;
border-top: none;
border-left: none;
border-bottom: none;
border-right: none;
}
tr:nth-child(2n - 1) {
background-color: #f1f1f1;
}
a {
width: 500px;
height: 20px;
}
a:link {
text-decoration: none;
color: #004878
}
a:visited {
text-decoration: none;
color: #004878
}
a:hover {
text-decoration: underline;
color: #004878
}
a:active {
text-decoration: underline;
color: #004878
}
img {
padding-left: 16px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment