forked from altras/fmifeedback-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
108 lines (96 loc) · 2.27 KB
/
custom.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@media all and (max-width: 1366px) {
body {
padding-top: 10%;
}
}
@media all and (max-width: 1290px) {
body {
padding-top: 25%;
}
}
@media all and (max-width: 840px) {
body {
padding-top: 33%;
}
}
@media all and (max-width: 520px) {
body {
padding-top: 50%;
}
}
/* push body, because of fixed navbar and huge logo*/
body {
padding: 150px;
}
.starter-template {
margin: 100px 15px;
text-align: center;
}
.courseInputContainer {
width: 25%;
}
.autocomplete, .tt-query, .tt-hint {
width: 500px;
height: 45px;
line-height: 45px;
padding: 6px 12px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 4px;
color: #555;
vertical-align: middle;
background-color: #fff;
border: 1px solid #ccc;
}
.pickAnotherCourse {
/*put it in the middle of the input*/
margin-top: 20px;
}
.course-suggestion-box {
/*background-color: #FFF;*/
}
/* TYPEAHEAD CSS FIX */
.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
margin-bottom: 0;
}
.tt-dropdown-menu {
min-width: 160px;
margin-top: 2px;
padding: 5px 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
box-shadow: 0 5px 10px rgba(0,0,0,.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.tt-suggestion {
display: block;
padding: 3px 20px;
}
.tt-suggestion.tt-is-under-cursor {
color: #fff;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
}
.tt-suggestion.tt-is-under-cursor a {
color: #fff;
}
.tt-suggestion p {
margin: 0;
}