uniform-ui 0.5 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/Gemfile +2 -1
- data/Gemfile.lock +12 -0
- data/Rakefile +34 -8
- data/index.html +587 -406
- data/preview/index.html.erb +423 -433
- data/preview/preview.scss +42 -0
- data/site/index.html +660 -0
- data/site/logo.png +0 -0
- data/site/preview.css +1 -0
- data/site/site/logo.png +0 -0
- data/site/site/preview.css +1 -0
- data/site/site/uniform.css +1 -0
- data/site/uniform.css +1 -0
- data/uniform.gemspec +3 -2
- data/vendor/assets/stylesheets/uniform/components/{buttons.css.scss → buttons.scss} +66 -33
- data/vendor/assets/stylesheets/uniform/components/card.scss +83 -0
- data/vendor/assets/stylesheets/uniform/components/form.scss +221 -0
- data/vendor/assets/stylesheets/uniform/components/grid.scss +83 -0
- data/vendor/assets/stylesheets/uniform/components/{inputs.css.scss → inputs.scss} +57 -29
- data/vendor/assets/stylesheets/uniform/components/lists.scss +62 -0
- data/vendor/assets/stylesheets/uniform/components/loaders.scss +62 -0
- data/vendor/assets/stylesheets/uniform/components/nav.scss +44 -0
- data/vendor/assets/stylesheets/uniform/components/row.scss +165 -0
- data/vendor/assets/stylesheets/uniform/components/table-container.scss +44 -0
- data/vendor/assets/stylesheets/uniform/components/table-form.scss +264 -0
- data/vendor/assets/stylesheets/uniform/components/tabs.scss +32 -0
- data/vendor/assets/stylesheets/uniform/components/tile.scss +32 -0
- data/vendor/assets/stylesheets/uniform/defaults.scss +30 -0
- data/vendor/assets/stylesheets/uniform/helpers.scss +128 -0
- data/vendor/assets/stylesheets/uniform/mixins/grid-framework.scss +142 -0
- data/vendor/assets/stylesheets/uniform/{mixins.css.scss → mixins.scss} +16 -32
- data/vendor/assets/stylesheets/uniform/variables.scss +54 -0
- data/vendor/assets/stylesheets/{uniform.css.scss → uniform.scss} +4 -1
- metadata +44 -13
- data/preview/preview.css +0 -1
- data/preview/preview.css.scss +0 -3
- data/preview/uniform.css +0 -0
- data/vendor/assets/stylesheets/uniform/components/loaders.css.scss +0 -149
- data/vendor/assets/stylesheets/uniform/helpers.css.scss +0 -31
- data/vendor/assets/stylesheets/uniform/variables.css.scss +0 -44
@@ -0,0 +1,42 @@
|
|
1
|
+
*{
|
2
|
+
box-sizing:border-box;
|
3
|
+
}
|
4
|
+
html, body{
|
5
|
+
font-family: Helvetica, sans-serif;
|
6
|
+
}
|
7
|
+
.section{
|
8
|
+
width:100%;
|
9
|
+
padding: 100px 50px;
|
10
|
+
border-bottom:1px solid darken(white, 20);
|
11
|
+
pre:first-of-type{
|
12
|
+
margin-top:0;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
.side-nav{
|
16
|
+
position:fixed;
|
17
|
+
overflow-y:scroll;
|
18
|
+
width:250px;
|
19
|
+
height:100%;
|
20
|
+
border-right:1px solid darken(white, 20);
|
21
|
+
a{
|
22
|
+
color: black;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
.main-content{
|
26
|
+
margin-left:250px;
|
27
|
+
}
|
28
|
+
.swatch{
|
29
|
+
height:1em;
|
30
|
+
width:4em;
|
31
|
+
margin-right:5px;
|
32
|
+
background:gray;
|
33
|
+
display:inline-block;
|
34
|
+
vertical-align:middle;
|
35
|
+
}
|
36
|
+
|
37
|
+
.table{
|
38
|
+
width:100%;
|
39
|
+
td{
|
40
|
+
padding: 5px;
|
41
|
+
}
|
42
|
+
}
|