torino 0.1.2 → 0.1.3
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/README.md +7 -8
- data/lib/torino/version.rb +1 -1
- data/vendor/assets/stylesheets/torino.css +212 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d80b5f327a1abcf156ee7aea3c68e83b7566cd8
|
4
|
+
data.tar.gz: 9cccec89e3d09d1707fb360789259905a89fd592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cc17edae8ae2cc99a4205b04b03c62b0295eb8663e25251753d19d7b4135cd83ac0d351d208cc5a1778ef1f21db37a51e4ef534945d2adeb62fefbca1a64e37
|
7
|
+
data.tar.gz: d6708b760b45b18a4c5851072a1956925a09f8d490ef25556f25053a1f8027bacd58fefa4c17c8c76f7e60f3d386143375a6a9dea36f640a1fa7f8482bab6910
|
data/README.md
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
# Torino
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+

|
4
|
+
|
5
|
+
Nothing special, just my stylesheets library without any dependencies.
|
5
6
|
|
6
7
|
## Installation
|
7
8
|
|
8
|
-
|
9
|
+
Add this line to your application's Gemfile:
|
9
10
|
|
10
11
|
```ruby
|
11
12
|
gem 'torino'
|
@@ -19,16 +20,14 @@ Or install it yourself as:
|
|
19
20
|
|
20
21
|
$ gem install torino
|
21
22
|
|
22
|
-
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Add this line to your application.css:
|
23
26
|
|
24
27
|
```css
|
25
28
|
*= require torino
|
26
29
|
```
|
27
30
|
|
28
|
-
## Usage
|
29
|
-
|
30
|
-
TODO: Write usage instructions here.
|
31
|
-
|
32
31
|
## Development
|
33
32
|
|
34
33
|
After checking out the repo, run `bin/setup` to install dependencies.
|
data/lib/torino/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
html
|
1
|
+
html {
|
2
2
|
height: 100%;
|
3
3
|
}
|
4
4
|
|
@@ -7,4 +7,215 @@ body {
|
|
7
7
|
margin: 0 auto;
|
8
8
|
text-rendering: optimizeLegibility;
|
9
9
|
width: 100%;
|
10
|
+
padding-bottom: 40px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.container {
|
14
|
+
width: 980px;
|
15
|
+
margin-right: auto;
|
16
|
+
margin-left: auto;
|
17
|
+
}
|
18
|
+
|
19
|
+
/*
|
20
|
+
* Text
|
21
|
+
* ------------------------------------------
|
22
|
+
*/
|
23
|
+
.left {
|
24
|
+
text-align: left;
|
25
|
+
}
|
26
|
+
|
27
|
+
.right {
|
28
|
+
text-align: right;
|
29
|
+
}
|
30
|
+
|
31
|
+
.center {
|
32
|
+
text-align: center;
|
33
|
+
}
|
34
|
+
|
35
|
+
/*
|
36
|
+
* Directions
|
37
|
+
* ------------------------------------------
|
38
|
+
*/
|
39
|
+
.pull-right {
|
40
|
+
float: right;
|
41
|
+
}
|
42
|
+
|
43
|
+
.pull-left {
|
44
|
+
float: left;
|
45
|
+
}
|
46
|
+
|
47
|
+
/*
|
48
|
+
* Buttons
|
49
|
+
* ------------------------------------------
|
50
|
+
*/
|
51
|
+
input[type=submit] {
|
52
|
+
-webkit-appearance: none;
|
53
|
+
width: auto;
|
54
|
+
border: none;
|
55
|
+
font-size: inherit;
|
56
|
+
}
|
57
|
+
|
58
|
+
.button, input[type=submit] {
|
59
|
+
background-color: #00695C;
|
60
|
+
color: #FFF;
|
61
|
+
padding: 16px 28px;
|
62
|
+
cursor: pointer;
|
63
|
+
}
|
64
|
+
|
65
|
+
.button:hover, input[type=submit]:hover {
|
66
|
+
background-color: #00796B;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
a.button, a.button:hover, a.button:visited {
|
71
|
+
color: #FFF;
|
72
|
+
}
|
73
|
+
|
74
|
+
.button.mini {
|
75
|
+
color: #212121;
|
76
|
+
background-color: #FFD740;
|
77
|
+
padding: 4px 8px;
|
78
|
+
}
|
79
|
+
|
80
|
+
.button.mini:hover {
|
81
|
+
color: #212121;
|
82
|
+
background-color: #FFE57F;
|
83
|
+
}
|
84
|
+
|
85
|
+
a.button.mini, a.button.mini:hover, a.button.mini:visited {
|
86
|
+
color: #212121;
|
87
|
+
}
|
88
|
+
|
89
|
+
/*
|
90
|
+
* Forms
|
91
|
+
* ------------------------------------------
|
92
|
+
*/
|
93
|
+
.actions {
|
94
|
+
margin-top: 20px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.actions a, .actions input[type=submit], .actions .button {
|
98
|
+
margin-right: 40px;
|
99
|
+
}
|
100
|
+
|
101
|
+
/*
|
102
|
+
* Inputs
|
103
|
+
* ------------------------------------------
|
104
|
+
*/
|
105
|
+
input {
|
106
|
+
margin: 0 10px 14px 0;
|
107
|
+
}
|
108
|
+
|
109
|
+
input[type=text] {
|
110
|
+
border: none;
|
111
|
+
border-bottom: #FFE57F solid 1px;
|
112
|
+
font-size: inherit;
|
113
|
+
width: 400px;
|
114
|
+
}
|
115
|
+
|
116
|
+
input[type=text]:focus {
|
117
|
+
border-bottom: #009688 solid 1px;
|
118
|
+
}
|
119
|
+
|
120
|
+
input:focus, textarea:focus {
|
121
|
+
outline: none;
|
122
|
+
}
|
123
|
+
|
124
|
+
/*
|
125
|
+
* Labels
|
126
|
+
* ------------------------------------------
|
127
|
+
*/
|
128
|
+
label {
|
129
|
+
color: #757575;
|
130
|
+
margin-right: 18px;
|
131
|
+
}
|
132
|
+
|
133
|
+
label.fix-width {
|
134
|
+
display: inline-block;
|
135
|
+
width: 160px;
|
136
|
+
max-width: 160px;
|
137
|
+
min-width: 160px;
|
138
|
+
}
|
139
|
+
|
140
|
+
/*
|
141
|
+
* Links
|
142
|
+
* ------------------------------------------
|
143
|
+
*/
|
144
|
+
a {
|
145
|
+
border: none;
|
146
|
+
color: #1565C0;
|
147
|
+
cursor: pointer;
|
148
|
+
text-decoration: none;
|
149
|
+
}
|
150
|
+
|
151
|
+
a:hover {
|
152
|
+
color: #1565C0;
|
153
|
+
border: none;
|
154
|
+
}
|
155
|
+
|
156
|
+
a:visited {
|
157
|
+
color: #1565C0;
|
158
|
+
}
|
159
|
+
|
160
|
+
/*
|
161
|
+
* Linsts
|
162
|
+
* ------------------------------------------
|
163
|
+
*/
|
164
|
+
|
165
|
+
/*
|
166
|
+
* Menu
|
167
|
+
* ------------------------------------------
|
168
|
+
*/
|
169
|
+
.menu {
|
170
|
+
background-color: #009688;
|
171
|
+
color: #FFF;
|
172
|
+
overflow: auto;
|
173
|
+
font-weight: bold;
|
174
|
+
padding: 20px 0;
|
175
|
+
}
|
176
|
+
|
177
|
+
.menu a {
|
178
|
+
color: #FFF;
|
179
|
+
}
|
180
|
+
|
181
|
+
.menu ul {
|
182
|
+
list-style-type: none;
|
183
|
+
margin: 0;
|
184
|
+
padding: 0;
|
185
|
+
display: inline-block;
|
186
|
+
}
|
187
|
+
|
188
|
+
.menu li {
|
189
|
+
display: inline-block;
|
190
|
+
padding-right: 20px;
|
191
|
+
}
|
192
|
+
|
193
|
+
.menu li:last-child {
|
194
|
+
padding-right: 0;
|
195
|
+
}
|
196
|
+
|
197
|
+
/*
|
198
|
+
* Tables
|
199
|
+
* ------------------------------------------
|
200
|
+
*/
|
201
|
+
table {
|
202
|
+
border-collapse: collapse;
|
203
|
+
margin-bottom: 40px;
|
204
|
+
}
|
205
|
+
|
206
|
+
table.wide {
|
207
|
+
width: 100%;
|
208
|
+
}
|
209
|
+
|
210
|
+
th, td {
|
211
|
+
text-align: left;
|
212
|
+
padding: 10px 30px 10px 14px;
|
213
|
+
}
|
214
|
+
|
215
|
+
th:last-child, td:last-child {
|
216
|
+
padding-right: 14px;
|
217
|
+
}
|
218
|
+
|
219
|
+
th {
|
220
|
+
background-color: #CFD8DC;
|
10
221
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: torino
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- blackchestnut
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|