site.css 888 Bytes
Newer Older
1
body {
Alexander Makarov committed
2
  padding-top: 70px;
3 4
}

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

.jumbotron {
Alexander Makarov committed
13 14
  text-align: center;
  background-color: transparent;
15 16
}
.jumbotron .btn {
Alexander Makarov committed
17 18
  font-size: 21px;
  padding: 14px 24px;
19
}
20

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

26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    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"; }