main.css 3.05 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;
47
	overflow: auto;
Qiang Xue committed
48 49
}

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

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

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

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

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

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

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

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

Qiang Xue committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
.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
118 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


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