main.css 3.08 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

Qiang Xue committed
44 45 46
.default-view .sticky-value {
	padding: 6px 12px;
	background: lightyellow;
Qiang Xue committed
47 48
	white-space: pre;
	word-wrap: break-word;
Qiang Xue committed
49 50
}

Qiang Xue committed
51 52 53 54 55
.default-view .form-group label.help {
	border-bottom: 1px dashed #888;
	cursor: help;
}

Qiang Xue committed
56 57 58 59 60 61
.default-view .modal-dialog {
	width: 800px;
}

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

Qiang Xue committed
64 65 66 67 68 69 70 71 72 73 74 75
.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
76 77 78
	width: 100px;
}

Qiang Xue committed
79
.default-view-files table .check {
Qiang Xue committed
80 81 82
	width: 25px;
	text-align: center;
}
Qiang Xue committed
83 84 85 86 87 88 89 90

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

Qiang Xue committed
94
.default-view-results pre .error {
Qiang Xue committed
95 96 97 98 99
	background: #FFE0E1;
	color: black;
	padding: 1px;
}

100 101 102 103
.default-view-results .alert pre {
	background: white;
}

Qiang Xue committed
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
.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
119 120 121 122 123 124 125 126 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


.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;
}