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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
* {
box-sizing: border-box;
}
h1, h2, p, form, label {
text-align: center;
}
h1, h2 {
margin-top: 1.5em;
margin-bottom: 0.5em;
}
#sourcetxt {
display: block;
margin-left: auto;
margin-right: auto;
width: 90%;
max-width: 700px;
height: 250px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 90%;
max-width: 700px;
}
.typeahead {
width: 90%;
max-width: 700px;
margin: auto;
display: block;
padding-bottom: 30px;
position: relative;
}
.typeahead input {
position: absolute;
top: 0;
left: 0;
width: 100%;
max-width: 700px;
padding: 10px;
opacity: 1;
background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255);
}
.twitter-typeahead {
width: 100%;
}
.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
margin-bottom: 0;
}
.typeahead ul, .typeahead li {
list-style: none;
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
}
.tt-menu, .ui-menu {
width: 100%;
max-width: 700px;
margin-top: 2px;
padding: 5px 0;
background-color: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
}
.tt-suggestion, .ui-menu-item {
display: block;
padding: 6px 20px;
}
.ui-helper-hidden-accessible {
display: none;
}
.typeahead-footer {
border-top: 1px solid #eee;
margin-top: 10px;
padding: 20px;
}
.title {
color: #222;
}
.title strong {
color: #000;
}
.author {
color: #666
}
.author strong {
color: #444
}
.score {
color: #888;
}
td {
vertical-align: top;
text-align: left;
}
|