lwmem/docs/static/css/common.css

32 lines
498 B
CSS
Raw Normal View History

2019-12-08 09:50:16 +01:00
/* Center aligned text */
2019-12-07 03:49:49 +01:00
.center {
text-align: center;
2019-12-08 09:50:16 +01:00
}
/* Paragraph with main links on index page */
.index_links {
text-align: center;
}
/* Index links a */
.index-links a {
display: inline-block;
border: 1px solid #0E4263;
padding: 3px 10px;
background: #2980B9;
border-radius: 4px;
color: #FFFFFF;
}
.index-links a:hover {
background: #0E4263;
}
/* Table header p w/0 margin */
table thead th {
vertical-align: middle;
}
table thead th p {
margin: 0;
2019-12-07 03:49:49 +01:00
}