site.css 1.22 KB
Newer Older
1
body {
2
	padding-top: 70px;
3 4
}

Alexander Makarov committed
5
.footer {
6 7 8 9
	border-top: 1px solid #ddd;
	margin-top: 30px;
	padding-top: 15px;
	padding-bottom: 30px;
10 11 12
}

.jumbotron {
13 14
	text-align: center;
	background-color: transparent;
15
}
16

17
.jumbotron .btn {
18 19
	font-size: 21px;
	padding: 14px 24px;
20
}
21

22 23 24 25 26
.not-set {
	color: #c55;
	font-style: italic;
}

27 28
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
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
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	padding-left: 5px;
}

a.asc:after {
	content: /*"\e113"*/ "\e151";
}

a.desc:after {
	content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
	content: "\e153";
}

.sort-numerical a.desc:after {
	content: "\e154";
}

.sort-ordinal a.asc:after {
	content: "\e155";
}

.sort-ordinal a.desc:after {
	content: "\e156";
61 62
}

63 64 65 66
.grid-view th {
    white-space: nowrap;
}

67 68 69 70 71
.hint-block {
	display: block;
	margin-top: 5px;
	color: #999;
}
72

73 74 75 76 77 78
.error-block {
	display: none;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #a94442;
}
79

80 81 82
.has-error .error-block {
	display: block;
}
83 84

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