blob: 3293034f5c1d7a35088e012d92e395d191b5546a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* override bootstrap */
.btn-large {
padding: 8px 19px !important;
}
/* main styles */
#job-application input[type=text],
#job-application select {
width: 55%;
}
#job-description legend,
#job-application legend {
text-align: center;
}
#quick-links {
position: fixed;
left: 45px;
top: 250px;
}
.sync-msg {
font-size: .8em;
}
.messages.success {
background: lightgreen;
}
#disqus_thread{
position: relative;
}
#disqus_thread:after{
content: "";
display: block;
height: 205px;
width: 100%;
position: absolute;
bottom: 0px;
background:#f8f8f8;
}
|