bootstrap-intel-theme 0.1.4 → 0.1.5
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 +4 -4
- data/LICENSE +340 -0
- data/README.md +58 -0
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/javascripts/bootstrap/bootstrap.js +1894 -0
- data/app/assets/javascripts/bootstrap_intel_theme.js +13 -0
- data/app/assets/stylesheets/bootstrap/bootstrap.css.scss +5984 -0
- data/app/assets/stylesheets/bootstrap_intel_theme.css.scss +9 -0
- data/app/assets/stylesheets/intel/layout.css.scss +451 -0
- data/app/assets/stylesheets/intel/responsive.css.scss +141 -0
- metadata +14 -2
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
/* Tablets */
|
|
2
|
+
@media (max-width: 979px) {
|
|
3
|
+
html .two-lines-number {
|
|
4
|
+
font-size: 100%;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* Phones */
|
|
9
|
+
@media (max-width: 767px) {
|
|
10
|
+
html #layout {
|
|
11
|
+
padding-top: 48px;
|
|
12
|
+
padding-left: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
html #menu-toggle {
|
|
16
|
+
display: block;
|
|
17
|
+
float: left;
|
|
18
|
+
border-right: 1px solid #222;
|
|
19
|
+
height: 48px;
|
|
20
|
+
padding-left: 12px;
|
|
21
|
+
|
|
22
|
+
img {
|
|
23
|
+
margin-top: 11px;
|
|
24
|
+
margin-right: 12px;
|
|
25
|
+
width: 25px;
|
|
26
|
+
height: 25px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
#logged-user {
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.header {
|
|
35
|
+
padding: 1.5em 1em;
|
|
36
|
+
|
|
37
|
+
h1 {
|
|
38
|
+
font-size: 2em;
|
|
39
|
+
margin: 0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.navbar {
|
|
44
|
+
position: static;
|
|
45
|
+
|
|
46
|
+
.navbar-nav {
|
|
47
|
+
margin-top: 0;
|
|
48
|
+
margin-left: 0;
|
|
49
|
+
margin-right: 0;
|
|
50
|
+
|
|
51
|
+
li.pull-right {
|
|
52
|
+
float: none !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
li {
|
|
56
|
+
border-bottom: 1px solid #EEE;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
li:last-child {
|
|
60
|
+
border-bottom: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
html #menu {
|
|
66
|
+
z-index: 9999;
|
|
67
|
+
margin-left: 0;
|
|
68
|
+
top: 0;
|
|
69
|
+
left: 0;
|
|
70
|
+
right: 0;
|
|
71
|
+
height: 48px;
|
|
72
|
+
bottom: auto;
|
|
73
|
+
width: 100%;
|
|
74
|
+
|
|
75
|
+
#logo {
|
|
76
|
+
margin: 9px 0 0 10px;
|
|
77
|
+
width: 30px;
|
|
78
|
+
height: 30px;
|
|
79
|
+
display: block;
|
|
80
|
+
float: left;
|
|
81
|
+
margin-right: 10px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
#site-name {
|
|
85
|
+
display: none;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
ul {
|
|
89
|
+
height: 0;
|
|
90
|
+
animation: height 1s;
|
|
91
|
+
display: none;
|
|
92
|
+
|
|
93
|
+
li {
|
|
94
|
+
border-bottom: 1px solid #111;
|
|
95
|
+
|
|
96
|
+
&:last-child {
|
|
97
|
+
border-bottom: 0;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.open {
|
|
103
|
+
#menu-toggle {
|
|
104
|
+
background: #222;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
ul {
|
|
108
|
+
z-index: 999;
|
|
109
|
+
border-top: 1px solid #111;
|
|
110
|
+
height: auto;
|
|
111
|
+
position: fixed;
|
|
112
|
+
top: 48px;
|
|
113
|
+
left: 0;
|
|
114
|
+
right: 0;
|
|
115
|
+
background: #222;
|
|
116
|
+
display: block;
|
|
117
|
+
|
|
118
|
+
li.active a {
|
|
119
|
+
background: #111;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.content {
|
|
126
|
+
padding: 10px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
h3.subtitle {
|
|
130
|
+
font-size: 18px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.col-xs-12 {
|
|
134
|
+
padding-left: 0;
|
|
135
|
+
padding-right: 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
html .two-lines-number {
|
|
139
|
+
font-size: 100%;
|
|
140
|
+
}
|
|
141
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap-intel-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruno Cavalcante
|
|
@@ -16,8 +16,20 @@ executables: []
|
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
18
18
|
files:
|
|
19
|
-
-
|
|
19
|
+
- app/assets/fonts/glyphicons-halflings-regular.eot
|
|
20
|
+
- app/assets/fonts/glyphicons-halflings-regular.svg
|
|
21
|
+
- app/assets/fonts/glyphicons-halflings-regular.ttf
|
|
22
|
+
- app/assets/fonts/glyphicons-halflings-regular.woff
|
|
23
|
+
- app/assets/javascripts/bootstrap/bootstrap.js
|
|
24
|
+
- app/assets/javascripts/bootstrap_intel_theme.js
|
|
25
|
+
- app/assets/stylesheets/bootstrap/bootstrap.css.scss
|
|
26
|
+
- app/assets/stylesheets/bootstrap_intel_theme.css.scss
|
|
27
|
+
- app/assets/stylesheets/intel/layout.css.scss
|
|
28
|
+
- app/assets/stylesheets/intel/responsive.css.scss
|
|
20
29
|
- lib/bootstrap-intel-theme/rails/engine.rb
|
|
30
|
+
- lib/bootstrap-intel-theme.rb
|
|
31
|
+
- README.md
|
|
32
|
+
- LICENSE
|
|
21
33
|
homepage: http://github.com/brunocavalcante/bootstrap-intel-theme
|
|
22
34
|
licenses: []
|
|
23
35
|
metadata: {}
|