-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathmaterial.css
109 lines (87 loc) · 1.78 KB
/
material.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.menu {
background: none;
}
a:hover {
text-decoration: none;
}
/** LINK **/
.menu ul.list li a {
text-decoration: none;
}
.menu ul.list li a:hover, .menu ul.list li.chapter .simple:hover {
background-color: #f8f9fa;
text-decoration: none;
}
#book-search-input {
margin-bottom: 0;
}
.menu ul.list li.divider {
margin-top: 0;
background: #e9ecef;
}
.menu .title:hover {
background-color: #f8f9fa;
}
/** CARD **/
.card {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
border-radius: 0.125rem;
border: 0;
margin-top: 1px;
}
.card-header {
background: none;
}
/** BUTTON **/
.btn {
border-radius: 0.125rem;
}
/** NAV BAR **/
.nav {
border: 0;
}
.nav-tabs > li > a {
border: 0;
border-bottom: 0.214rem solid transparent;
color: rgba(0, 0, 0, 0.54);
margin-right: 0;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: rgba(0, 0, 0, 0.87);
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 0.214rem solid transparent;
border-color: #008cff;
font-weight: bold;
}
.nav>li>a:focus, .nav>li>a:hover {
background: none;
}
/** LIST **/
.list-group-item:first-child {
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem;
}
.list-group-item:last-child {
border-bottom-left-radius: 0.125rem;
border-bottom-right-radius: 0.125rem;
}
/** MISC **/
.modifier {
border-radius: 0.125rem;
}
pre[class*="language-"] {
border-radius: 0.125rem;
}
/** TABLE **/
.table-hover>tbody>tr:hover {
background: rgba(0, 0, 0, 0.075);
}
table.params thead {
background: none;
}
table.params thead td {
color: rgba(0, 0, 0, 0.54);
font-weight: bold;
}