site.css 1.33 KB
Newer Older
1
html,
2
body {
3
    height: 100%;
4 5 6
}

.wrap {
7 8 9 10
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
11 12 13 14
}

.wrap > .container {
    padding: 70px 15px 20px;
15 16
}

Alexander Makarov committed
17
.footer {
18 19 20 21
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
22 23 24
}

.jumbotron {
25 26
    text-align: center;
    background-color: transparent;
27
}
28

29
.jumbotron .btn {
30 31
    font-size: 21px;
    padding: 14px 24px;
32
}
33

34
.not-set {
35 36
    color: #c55;
    font-style: italic;
37 38
}

39 40
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
41 42 43 44 45 46 47 48
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
49 50 51
}

a.asc:after {
52
    content: /*"\e113"*/ "\e151";
53 54 55
}

a.desc:after {
56
    content: /*"\e114"*/ "\e152";
57 58 59
}

.sort-numerical a.asc:after {
60
    content: "\e153";
61 62 63
}

.sort-numerical a.desc:after {
64
    content: "\e154";
65 66 67
}

.sort-ordinal a.asc:after {
68
    content: "\e155";
69 70 71
}

.sort-ordinal a.desc:after {
72
    content: "\e156";
73 74
}

75 76 77 78
.grid-view th {
    white-space: nowrap;
}

79
.hint-block {
80 81 82
    display: block;
    margin-top: 5px;
    color: #999;
83
}
84

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