euphoria 0.1.4.5 → 0.1.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/UI_Modules.coffee +1 -1
- data/app/assets/stylesheets/euphoria/components/_buttons.sass +0 -3
- data/app/assets/stylesheets/euphoria/components/_menus.sass +1 -0
- data/app/assets/stylesheets/euphoria/core/_containers.sass +0 -4
- data/app/assets/stylesheets/euphoria/core/_grids.sass +1 -1
- data/app/assets/stylesheets/euphoria/core/_type.sass +3 -8
- data/lib/euphoria/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91bf4a239ee0e9199511a0aed190fabbf73deaf0
|
4
|
+
data.tar.gz: 9ce9bc87aa01073b85852708b5dae5a164415af6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec7548e3e4f498d76b49c7dd7d3d9d5dbf5f5c175a9b90bd3139d1d9f87ef4b0e085d8e95ad588257ca01bc6d903fe34b7362e1774c10517e7f0615d4246cce4
|
7
|
+
data.tar.gz: 79a1ebe6c73ad3905705fecd30f6adf31cb3e2182cf62d1b0b5876cc26195852bb381bf07964b86619d8ebebea457e60080b1acc5a48d3468aa8ca2f2592f385
|
@@ -15,7 +15,7 @@ $(document).on 'page:change', ->
|
|
15
15
|
#account for margin with fixed nav class
|
16
16
|
$(window).resize ->
|
17
17
|
if $('nav').hasClass('fixed')
|
18
|
-
$('.start-content').css 'margin-top', $('
|
18
|
+
$('.start-content').css 'margin-top', $('nav').height() + 10
|
19
19
|
if $(window).width() > 1023
|
20
20
|
$('.menu').removeAttr('style');
|
21
21
|
|
@@ -1,6 +1,3 @@
|
|
1
|
-
//Menu container variable
|
2
|
-
$menu_bg: #fff
|
3
|
-
|
4
1
|
/*=============================================================================
|
5
2
|
** Main container
|
6
3
|
**============================================================================
|
@@ -11,7 +8,6 @@ $menu_bg: #fff
|
|
11
8
|
//mostly used if you have a fixed navbar
|
12
9
|
.start-content
|
13
10
|
@extend %default_prop
|
14
|
-
z-index: -1
|
15
11
|
overflow: hidden
|
16
12
|
|
17
13
|
/*=============================================================================
|
@@ -1,5 +1,5 @@
|
|
1
1
|
html
|
2
|
-
font-size:
|
2
|
+
font-size: 16px
|
3
3
|
|
4
4
|
h1
|
5
5
|
font-size: 3rem
|
@@ -18,14 +18,9 @@ p
|
|
18
18
|
|
19
19
|
+lg-desktop
|
20
20
|
html
|
21
|
-
font-size:
|
22
|
-
|
21
|
+
font-size: 17px
|
23
22
|
|
24
23
|
+tablet
|
25
|
-
html
|
26
|
-
font-size: 16px
|
27
|
-
|
28
|
-
|
29
|
-
+mobile
|
30
24
|
html
|
31
25
|
font-size: 15px
|
26
|
+
|
data/lib/euphoria/version.rb
CHANGED