main.css 3.47 KB
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7
body {
	padding-top: 70px;
}

.footer {
	border-top: 1px solid #ddd;
	margin-top: 30px;
8
	padding: 15px 0 30px;
Qiang Xue committed
9 10 11 12 13 14 15 16 17 18 19 20 21
}

.jumbotron {
	text-align: center;
	background-color: transparent;
}

.jumbotron .btn {
	font-size: 21px;
	padding: 14px 24px;
}

.navbar-brand {
22 23
	padding: 0;
	margin: 0;
Qiang Xue committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
}

.default-index .generator {
	min-height: 200px;
	margin-bottom: 20px;
}

.list-group .glyphicon {
	float: right;
}

.popover {
	max-width: 400px;
	width: 400px;
}

.hint-block {
	display: none;
}
Qiang Xue committed
43

44 45 46 47 48 49 50 51
.error-summary {
	color: #a94442;
	background: #fdf7f7;
	border-left: 3px solid #eed3d7;
	padding: 10px 20px;
	margin: 0 0 15px 0;
}

Qiang Xue committed
52 53 54
.default-view .sticky-value {
	padding: 6px 12px;
	background: lightyellow;
Qiang Xue committed
55 56
	white-space: pre;
	word-wrap: break-word;
Qiang Xue committed
57 58
}

Qiang Xue committed
59 60 61 62 63
.default-view .form-group label.help {
	border-bottom: 1px dashed #888;
	cursor: help;
}

Qiang Xue committed
64 65 66 67 68 69
.default-view .modal-dialog {
	width: 800px;
}

.default-view .modal-dialog .error {
	color: #d9534f;
Qiang Xue committed
70 71
}

Qiang Xue committed
72 73 74 75 76 77 78 79 80 81 82 83
.default-view .modal-dialog .content {
	background: #fafafa;
	border-left: #eee 5px solid;
	padding: 5px 10px;
	overflow: auto;
}

.default-view .modal-dialog code {
	background: transparent;
}

.default-view-files table .action {
Qiang Xue committed
84 85 86
	width: 100px;
}

Qiang Xue committed
87
.default-view-files table .check {
Qiang Xue committed
88 89 90
	width: 25px;
	text-align: center;
}
Qiang Xue committed
91 92 93 94 95 96 97 98

.default-view-results pre {
	overflow: auto;
	background-color: #333;
	max-height: 300px;
	color: white;
	padding: 10px;
	border-radius: 0;
Qiang Xue committed
99
	white-space: nowrap;
Qiang Xue committed
100 101
}

Qiang Xue committed
102
.default-view-results pre .error {
Qiang Xue committed
103 104 105 106 107
	background: #FFE0E1;
	color: black;
	padding: 1px;
}

108 109 110 111
.default-view-results .alert pre {
	background: white;
}

Qiang Xue committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
.default-diff pre {
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
}

.default-diff pre del {
	background: pink;
}

.default-diff pre ins {
	background: lightgreen;
	text-decoration: none;
}
Qiang Xue committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211


.Differences {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

.Differences thead {
	display: none;
}

.Differences tbody th {
	text-align: right;
	background: #FAFAFA;
	padding: 1px 2px;
	border-right: 1px solid #eee;
	vertical-align: top;
	font-size: 13px;
	font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
	font-weight: normal;
	color: #999;
	width: 5px;
}

.Differences td {
	padding: 1px 2px;
	font-size: 13px;
	font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
}

.DifferencesSideBySide .ChangeInsert td.Left {
	background: #dfd;
}

.DifferencesSideBySide .ChangeInsert td.Right {
	background: #cfc;
}

.DifferencesSideBySide .ChangeDelete td.Left {
	background: #f88;
}

.DifferencesSideBySide .ChangeDelete td.Right {
	background: #faa;
}

.DifferencesSideBySide .ChangeReplace .Left {
	background: #fe9;
}

.DifferencesSideBySide .ChangeReplace .Right {
	background: #fd8;
}

.Differences ins, .Differences del {
	text-decoration: none;
}

.DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del {
	background: #fc0;
}

.Differences .Skipped {
	background: #f7f7f7;
}

.DifferencesInline .ChangeReplace .Left,
.DifferencesInline .ChangeDelete .Left {
	background: #fdd;
}

.DifferencesInline .ChangeReplace .Right,
.DifferencesInline .ChangeInsert .Right {
	background: #dfd;
}

.DifferencesInline .ChangeReplace ins {
	background: #9e9;
}

.DifferencesInline .ChangeReplace del {
	background: #e99;
}
212

Alexander Makarov committed
213 214 215 216
.DifferencesInline th[data-line-number]:before {
	content: attr(data-line-number);
}

217 218 219 220 221 222 223
/* additional styles for typeahead.js-bootstrap.css */
.twitter-typeahead {
    display: block !important;
}
.twitter-typeahead .tt-hint {
    padding: 6px 12px !important;
}