quantum 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8771006356dc26776c64a173e08433929487bf2e
|
|
4
|
+
data.tar.gz: 6561e6581433bab3f00d14a06b353fe02c05a9ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20be75709c55e6e83fdd550cd2a71bb906c5f27511c52c777ac73e27bcc5c0c240a0e8b71397eb567d1691d08f93e08ab32b64d2c1da1583f0ac4802370cd12b
|
|
7
|
+
data.tar.gz: 3f9ec3d023c92a81340a462c87184361550752f547daefcc5179262c3ab7968325912c84836be4a64265da15d7630a833fa2d2e85e7adca03f16bbfc416035cc
|
data/lib/quantum/version.rb
CHANGED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* Table of Contents
|
|
2
|
+
==================================================
|
|
3
|
+
#Ad */
|
|
4
|
+
|
|
5
|
+
/* #Ad
|
|
6
|
+
================================================== */
|
|
7
|
+
.ad {
|
|
8
|
+
background-color: rgba(236,238,241,1);
|
|
9
|
+
height: 220px;
|
|
10
|
+
width: 220px;
|
|
11
|
+
}
|
|
12
|
+
.ad-large-rectangle {
|
|
13
|
+
height: 280px;
|
|
14
|
+
width: 336px;
|
|
15
|
+
}
|
|
16
|
+
.ad-medium-rectangle {
|
|
17
|
+
height: 250px;
|
|
18
|
+
width: 300px;
|
|
19
|
+
}
|
|
20
|
+
.ad-small-rectangle {
|
|
21
|
+
height: 150px;
|
|
22
|
+
width: 180px;
|
|
23
|
+
}
|
|
24
|
+
.ad-square {
|
|
25
|
+
height: 250px;
|
|
26
|
+
width: 250px;
|
|
27
|
+
}
|
|
28
|
+
.ad-small-square {
|
|
29
|
+
height: 200px;
|
|
30
|
+
width: 200px;
|
|
31
|
+
}
|
|
32
|
+
.ad-button {
|
|
33
|
+
height: 125px;
|
|
34
|
+
width: 125px;
|
|
35
|
+
}
|
|
36
|
+
.ad-large-leaderboard {
|
|
37
|
+
height: 90px;
|
|
38
|
+
width: 970px;
|
|
39
|
+
}
|
|
40
|
+
.ad-leaderboard {
|
|
41
|
+
height: 90px;
|
|
42
|
+
width: 728px;
|
|
43
|
+
}
|
|
44
|
+
.ad-banner {
|
|
45
|
+
height: 60px;
|
|
46
|
+
width: 468px;
|
|
47
|
+
}
|
|
48
|
+
.ad-half-banner {
|
|
49
|
+
height: 60px;
|
|
50
|
+
width: 234px;
|
|
51
|
+
}
|
|
52
|
+
.ad-mobile-banner {
|
|
53
|
+
height: 50px;
|
|
54
|
+
width: 320px;
|
|
55
|
+
}
|
|
56
|
+
.ad-vertical-banner {
|
|
57
|
+
height: 240px;
|
|
58
|
+
width: 120px;
|
|
59
|
+
}
|
|
60
|
+
.ad-large-skyscrapper {
|
|
61
|
+
height: 600px;
|
|
62
|
+
width: 300px;
|
|
63
|
+
}
|
|
64
|
+
.ad-wide-skyscrapper {
|
|
65
|
+
height: 600px;
|
|
66
|
+
width: 160px;
|
|
67
|
+
}
|
|
68
|
+
.ad-skyscrapper {
|
|
69
|
+
height: 600px;
|
|
70
|
+
width: 120px;
|
|
71
|
+
}
|
|
72
|
+
.ad-center { margin: 0 auto; }
|
|
@@ -97,12 +97,21 @@
|
|
|
97
97
|
text-decoration: none;
|
|
98
98
|
}
|
|
99
99
|
.header-user a:hover { color: rgba(255,255,255,1); }
|
|
100
|
-
.header-user img
|
|
100
|
+
.header-user img,
|
|
101
|
+
.header-user-placeholder {
|
|
102
|
+
background-color: rgba(236,238,241,1);
|
|
103
|
+
color: rgba(43,50,53,1);
|
|
101
104
|
border-radius: 2px;
|
|
102
105
|
box-shadow: 0 0 2px rgba(0,0,0,0.5);
|
|
103
106
|
display: inline-block;
|
|
104
107
|
height: 36px;
|
|
108
|
+
text-align: center;
|
|
105
109
|
width: 36px;
|
|
110
|
+
vertical-align: middle;
|
|
111
|
+
}
|
|
112
|
+
.header-user-placeholder i {
|
|
113
|
+
font-size: 24px;
|
|
114
|
+
line-height: 36px;
|
|
106
115
|
}
|
|
107
116
|
.header-toggle a {
|
|
108
117
|
border: 2px solid rgba(230,230,230,1);
|
|
@@ -147,4 +156,4 @@
|
|
|
147
156
|
font-size: 40px;
|
|
148
157
|
margin-top: 5px;
|
|
149
158
|
}
|
|
150
|
-
}
|
|
159
|
+
}
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
}
|
|
13
13
|
.pagination ul > li { display: inline; }
|
|
14
14
|
.pagination ul > li > a,
|
|
15
|
-
.pagination ul > li > span
|
|
15
|
+
.pagination ul > li > span,
|
|
16
|
+
.pagination ul > .active {
|
|
16
17
|
background-color: rgba(236,238,241,1);
|
|
17
18
|
border: 1px solid rgba(217,222,225,1);
|
|
18
19
|
border-left-width: 0;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quantum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-09-
|
|
11
|
+
date: 2013-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -102,6 +102,7 @@ files:
|
|
|
102
102
|
- vendor/assets/javascripts/transitions.js
|
|
103
103
|
- vendor/assets/javascripts/typeahead.js
|
|
104
104
|
- vendor/assets/javascripts/wizard.js
|
|
105
|
+
- vendor/assets/stylesheets/ad.css.scss
|
|
105
106
|
- vendor/assets/stylesheets/alert.css.scss
|
|
106
107
|
- vendor/assets/stylesheets/breadcrumb.css.scss
|
|
107
108
|
- vendor/assets/stylesheets/button.css.scss
|
|
@@ -156,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
157
|
version: '0'
|
|
157
158
|
requirements: []
|
|
158
159
|
rubyforge_project:
|
|
159
|
-
rubygems_version: 2.0
|
|
160
|
+
rubygems_version: 2.1.0
|
|
160
161
|
signing_key:
|
|
161
162
|
specification_version: 4
|
|
162
163
|
summary: Quantum Responsive Web Framework
|