-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (120 loc) · 2.01 KB
/
style.css
File metadata and controls
120 lines (120 loc) · 2.01 KB
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
110
111
112
113
114
115
116
117
118
119
120
.navbar-default {
background-color: #fafafa;
}
.navbar-default .navbar-brand a {
color: #333;
padding-bottom: 4px;
text-decoration: none;
}
.navbar-default .navbar-nav > li > a {
color: #333;
font-size: 16px;
padding-bottom: 4px;
}
.navbar-default .navbar-nav > li > a > i {
font-size: 20px;
}
.navbar-default .navbar-nav > li > a:hover {
color: #003;
}
.navbar-default .navbar-icons > li > a:hover {
border-bottom-style: solid;
border-width: 3px;
}
.navbar-default .navbar-brand a:hover {
color: #003;
border-bottom-style: solid;
border-width: 3px;
}
.pln {
color: #4d4d4c;
}
.str {
color: #718c00;
}
.kwd {
color: #8959a8;
}
.com {
color: #8e908c;
}
.typ {
color: #4271ae;
}
.lit {
color: #f5871f;
}
.pun {
color: #4d4d4c;
}
.opn {
color: #4d4d4c;
}
.clo {
color: #4d4d4c;
}
.tag {
color: #c82829;
}
.atn {
color: #f5871f;
}
.atv {
color: #3e999f;
}
.dec {
color: #f5871f;
}
.var {
color: #c82829;
}
.fun {
color: #4271ae;
}
.prettyprint {
padding: 8px;
background-color: #fcfcfe;
border: 1px solid #e1e1e8;
}
.prettyprint.linenums {
-webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
-moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
}
ol.linenums {
margin: 0 0 0 33px;
}
ol.linenums li {
padding-left: 12px;
color: #bebec5;
line-height: 18px;
}
pre {
overflow: auto;
word-wrap: normal;
white-space: pre;
}
.glyphicon-refresh-animate {
border: 1px;
-animation: spin 0.7s infinite linear;
-webkit-animation: spin2 0.7s infinite linear;
font-size: 10px;
margin: 1px;
padding: 2px 2px;
}
@-webkit-keyframes spin2 {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}