punchcard 0.2.8 → 0.2.9
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.
- data/VERSION +1 -1
- data/lib/views/layout.haml +0 -1
- data/lib/views/screen.sass +8 -1
- data/punchcard.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.9
|
data/lib/views/layout.haml
CHANGED
data/lib/views/screen.sass
CHANGED
|
@@ -6,7 +6,7 @@ $green: #090
|
|
|
6
6
|
$yellow: #fc0
|
|
7
7
|
|
|
8
8
|
#main
|
|
9
|
-
width:
|
|
9
|
+
max-width: 700px
|
|
10
10
|
margin-top: 30px
|
|
11
11
|
padding: 20px 20px 10px 20px
|
|
12
12
|
margin-left: auto
|
|
@@ -14,7 +14,9 @@ $yellow: #fc0
|
|
|
14
14
|
background: #eadab6
|
|
15
15
|
border-top: 10px solid #f8bba6
|
|
16
16
|
-moz-box-shadow: 3px 3px 0px #d2bd8e
|
|
17
|
+
-webkit-box-shadow: 3px 3px 0px #d2bd8e
|
|
17
18
|
-moz-border-radius: 20px
|
|
19
|
+
-webkit-border-radius: 20px
|
|
18
20
|
|
|
19
21
|
.clear
|
|
20
22
|
clear: both
|
|
@@ -45,6 +47,9 @@ $yellow: #fc0
|
|
|
45
47
|
position: relative
|
|
46
48
|
top: -10px
|
|
47
49
|
|
|
50
|
+
.person
|
|
51
|
+
text-shadow: -1px -2px 3px #d2bd8e, 1px 1px 3px #fff
|
|
52
|
+
|
|
48
53
|
.gravatar
|
|
49
54
|
float: left
|
|
50
55
|
width: 80px
|
|
@@ -52,7 +57,9 @@ $yellow: #fc0
|
|
|
52
57
|
margin-right: 25px
|
|
53
58
|
border: 3px solid $yellow
|
|
54
59
|
-moz-box-shadow: 0px 0px 10px $yellow
|
|
60
|
+
-webkit-box-shadow: 0px 0px 10px $yellow
|
|
55
61
|
&.pending
|
|
56
62
|
border-color: $green
|
|
57
63
|
-moz-box-shadow: 0px 0px 15px $green
|
|
64
|
+
-webkit-box-shadow: 0px 0px 15px $green
|
|
58
65
|
|
data/punchcard.gemspec
CHANGED