1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
body {
background-color: #eeeeee;
height: 100%;
}
#container {
margin: 4em auto 0;
width: 25%;
}
#principal {
background-color: #fefefe;
-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
border-radius: 2px 2px 2px 2px;
-moz-border-radius: 2px 2px 2px 2px;
-webkit-border-radius: 2px 2px 2px 2px;
padding: 1em;
.field {
margin-bottom: 1em;
label {
display: block;
margin-bottom: .25em;
}
}
input[type=text], input[type=password], input[type=email] {
font-size: 24px;
padding: 3px;
width: 100%;
box-sizing: border-box;
-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.7);
-moz-box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.7);
box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.7);
border: 1px solid #ddd;
outline: 0;
border-radius: 0;
}
}
.remember-me-field {
float: left;
}
.submit-field {
text-align: right;
}
.navigation {
margin: 1em;
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
#principal, .navigation a, .navigation a:visited {
color: #555d66;
}
#principal label, .navigation a {
font-size: .75em;
}
#flash, #error_explanation li {
color: black;
background-color: white;
padding: .75em;
margin-bottom: 2em;
font-size: .8em;
-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.flash-alert, #error_explanation li {
border-left: 5px solid red;
}
.flash-notice {
border-left: 5px solid green;
}
.flash-tag {
font-weight: bold;
}
#error_explanation {
h2 {
display: none;
}
ul {
margin-top: 0;
padding: 0;
}
li {
list-style-type: none;
}
}
|