-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.css
executable file
·127 lines (105 loc) · 1.67 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.spinner {
display: inline-block;
opacity: 0;
max-width: 0;
-webkit-transition: opacity 0.25s, max-width 0.45s;
-moz-transition: opacity 0.25s, max-width 0.45s;
-o-transition: opacity 0.25s, max-width 0.45s;
transition: opacity 0.25s, max-width 0.45s; /* Duration fixed since we animate additional hidden width */
}
/* ... */
.has-spinner.active .spinner {
opacity: 1;
max-width: 50px; /* More than it will ever come, notice that this affects on animation duration */
}
#loader {
display:none
}
.progress {
border-radius: 0px;
}
.header-title {
float: left;
}
.header {
margin-bottom: 200px
}
.pretentious-cat {
max-height:180px;
margin-left:50px;
}
.pretentious-cat-container {
float: right;
width: 20%;
}
.subtitle {
margin-top: 4%;
}
.advert {
width:729px;
margin: 0 auto 20 auto;
}
.legend {
width: 50%;
margin: 15px auto;
margin-bottom: 50px;
}
.legend-item {
width: 10px;
height: 10px;
display: inline-block;
}
.jumbotron h1 {
font-size: 61px;
}
.results {
margin-left: 15px;
width: 200px;
}
.results td {
font-size: 14;
text-align: center;
}
#rating-type {
margin-left: 25px;
}
.toggle {
margin-left: 30px;
}
#reddit-widget {
margin-left: 250px;
margin-top: -20px;
}
.permalink {
margin-top: 20px;
}
.sharing-buttons {
margin-left: 100px;
display: none;
width: 70%;
float: left;
}
.copyright-footer {
width: 50%;
margin: 0 auto 3%;
}
.jumbo-tiny-text p {
margin-bottom: 15px;
font-size: 14px;
}
.jumbo-results {
height:auto
}
.search-box {
margin-top: 3%;
}
.examples {
margin-top: 2%;
}
.search-options {
width: 35%;
margin: 0 auto;
}
body {
margin-top: 1%;
}