|
- /* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */
- @import url('https://fonts.googleapis.com/css?family=Titillium+Web');
- html,
- body {
- font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif;
- height: 100%;
- color: #000;
- background: #fff;
- font-size: 15px;
- }
- header .navbar {
- border-width: 0 0 0px;
- border-radius: 0;
- }
- .sideaffix{
- overflow: visible;
- }
- body .toc{
- background-color: inherit;
- overflow: visible;
- }
-
- /* code */
- code {
- color:#222f3d;
- background-color: #f9f9f9;
- border-radius:4px;
- padding: 3px 7px;
- }
-
- /* table */
- .table-striped>tbody>tr:nth-of-type(odd) {
- color:#333333;
- background-color: #d3d3d3
- }
- tbody>tr {
- color:#424242;
- background-color: #c0c0c0
- }
- .table>tbody+tbody {
- border-top:2px solid rgb(173, 173, 173)
- }
|