-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfinite-search.less
108 lines (102 loc) · 2.71 KB
/
infinite-search.less
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
/* CSS declarations go here */
body{
background: -webkit-linear-gradient(90deg, #ECE9E6 10%, #FFFFFF 90%); /* Chrome 10+, Saf5.1+ */
background: -moz-linear-gradient(90deg, #ECE9E6 10%, #FFFFFF 90%); /* FF3.6+ */
background: -ms-linear-gradient(90deg, #ECE9E6 10%, #FFFFFF 90%); /* IE10 */
background: -o-linear-gradient(90deg, #ECE9E6 10%, #FFFFFF 90%); /* Opera 11.10+ */
background: linear-gradient(90deg, #ECE9E6 10%, #FFFFFF 90%); /* W3C */
font-family:'Open Sans', Helvetica, Arial, sans-serif;
font-weight:300;
}
.right .github-fork-ribbon {
background-color: #f80;
}
.no-result {
margin: 48px 0px;
font-size:48px;
text-align:center;
width:100%;
.small{
font-size:0.5em;
}
}
.meteor{
background-image: url("https://d14jjfgstdxsoz.cloudfront.net/meteor-logo.png");
background-repeat: no-repeat;
background-size: 100%;
width: 150px;
height: 36px;
margin-left:auto;
margin-right:auto;
}
input[type="text"]:focus {
border-color: rgba(255,255,255, 1);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255,255,255, 0.6);
outline: 0 none;
}
.inner-container{
width:90%;
max-width: 1090px;
margin-left:auto;
margin-right:auto;
}
.jumbotron{
h1{
font-weight:300;
font-family:'Open Sans', Helvetica, Arial, sans-serif;
}
a {color: white;}
background: -webkit-linear-gradient(90deg, #DD5E89 10%, #F7BB97 90%); /* Chrome 10+, Saf5.1+ */
background: -moz-linear-gradient(90deg, #DD5E89 10%, #F7BB97 90%); /* FF3.6+ */
background: -ms-linear-gradient(90deg, #DD5E89 10%, #F7BB97 90%); /* IE10 */
background: -o-linear-gradient(90deg, #DD5E89 10%, #F7BB97 90%); /* Opera 11.10+ */
background: linear-gradient(90deg, #DD5E89 10%, #F7BB97 90%); /* W3C */
color: white;
text-align: center;
padding:0px;
padding-top:72px;
.inner-container {
height:100%;
width:80%;
max-width: 820px;
}
.credentials {
padding: 20px 0px;
margin-top:72px;
}
}
.search {
.brick {
width: 350px;
-webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
em {
background-color: #ffd700;
}
}
}
.fixed {
position: fixed;
bottom: 20px;
left:20px;
.loading{
position: relative;
width: 200px;
span{
margin-right: 10px;
-webkit-animation-name: rotate;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: infinite;
-webkit-transition-timing-function: linear;
}
}
}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}