main.css 3.52 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 52 53 54 55 56 57 58 59 60 61 62
.error-block {
	display: none;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #a94442;
}

.has-error .error-block {
	display: block;
}

.error-summary {
	color: #a94442;
	background: #fdf7f7;
	border-left: 3px solid #eed3d7;
	padding: 10px 20px;
	margin: 0 0 15px 0;
}

Qiang Xue committed
63 64 65
.default-view .sticky-value {
	padding: 6px 12px;
	background: lightyellow;
Qiang Xue committed
66 67
	white-space: pre;
	word-wrap: break-word;
Qiang Xue committed
68 69
}

Qiang Xue committed
70 71 72 73 74
.default-view .form-group label.help {
	border-bottom: 1px dashed #888;
	cursor: help;
}

Qiang Xue committed
75 76 77 78 79 80
.default-view .modal-dialog {
	width: 800px;
}

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

Qiang Xue committed
83 84 85 86 87 88 89 90 91 92 93 94
.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
95 96 97
	width: 100px;
}

Qiang Xue committed
98
.default-view-files table .check {
Qiang Xue committed
99 100 101
	width: 25px;
	text-align: center;
}
Qiang Xue committed
102 103 104 105 106 107 108 109

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

Qiang Xue committed
113
.default-view-results pre .error {
Qiang Xue committed
114 115 116 117 118
	background: #FFE0E1;
	color: black;
	padding: 1px;
}

119 120 121 122
.default-view-results .alert pre {
	background: white;
}

Qiang Xue committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
.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
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 212 213 214 215 216 217 218 219 220 221 222


.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;
}
223 224 225 226 227 228 229 230

/* additional styles for typeahead.js-bootstrap.css */
.twitter-typeahead {
    display: block !important;
}
.twitter-typeahead .tt-hint {
    padding: 6px 12px !important;
}