auther 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +47 -9
- data/app/assets/javascripts/auther/application.js +5 -0
- data/app/assets/stylesheets/auther/application.scss +1 -0
- data/app/assets/stylesheets/auther/foundation_and_overrides.scss +1191 -0
- data/app/controllers/auther/base_controller.rb +79 -0
- data/app/controllers/auther/session_controller.rb +4 -52
- data/app/models/auther/account.rb +44 -3
- data/app/views/auther/session/new.html.slim +31 -20
- data/app/views/layouts/auther/auth.html.slim +12 -9
- data/lib/auther/engine.rb +12 -0
- data/lib/auther/gatekeeper.rb +27 -17
- data/lib/auther/version.rb +1 -1
- metadata +47 -4
- metadata.gz.sig +0 -0
- data/app/assets/stylesheets/auther/application.css.scss +0 -45
- data/app/controllers/auther/application_controller.rb +0 -4
metadata.gz.sig
CHANGED
Binary file
|
@@ -1,45 +0,0 @@
|
|
1
|
-
.auther-form {
|
2
|
-
font-family: "Helvetica","Times New Roman","Georgia","Serif";
|
3
|
-
background-color: rgba(198,198,198,1);
|
4
|
-
border: solid black 0.1em;
|
5
|
-
width: 20em;
|
6
|
-
margin: 0 auto;
|
7
|
-
padding: 1em;
|
8
|
-
-webkit-border-radius: 0.5em; -moz-border-radius: 0.5em; border-radius: 0.5em;
|
9
|
-
|
10
|
-
.row {
|
11
|
-
&:after {
|
12
|
-
content: "";
|
13
|
-
display: table;
|
14
|
-
clear: both;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
|
18
|
-
.title {
|
19
|
-
margin-top: 0;
|
20
|
-
text-align: center;
|
21
|
-
}
|
22
|
-
|
23
|
-
.label {
|
24
|
-
margin: 0 0 1em 0;
|
25
|
-
float: left;
|
26
|
-
}
|
27
|
-
|
28
|
-
.input {
|
29
|
-
margin: 0 0 1em 0;
|
30
|
-
float: right;
|
31
|
-
input {
|
32
|
-
width: 15em;
|
33
|
-
}
|
34
|
-
}
|
35
|
-
|
36
|
-
.actions {
|
37
|
-
text-align: center;
|
38
|
-
input {
|
39
|
-
color: rgba(255,255,255,1);
|
40
|
-
background-color: rgba(0,140,186,1);
|
41
|
-
width: 15em;
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|