about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/userdata/layout.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/userdata/layout.scss')
-rw-r--r--app/assets/stylesheets/userdata/layout.scss21
1 files changed, 18 insertions, 3 deletions
diff --git a/app/assets/stylesheets/userdata/layout.scss b/app/assets/stylesheets/userdata/layout.scss index 9e4906e..6b99d46 100644 --- a/app/assets/stylesheets/userdata/layout.scss +++ b/app/assets/stylesheets/userdata/layout.scss
@@ -27,7 +27,7 @@ body {
27 } 27 }
28 } 28 }
29 29
30 input[type=text], input[type=password] { 30 input[type=text], input[type=password], input[type=email] {
31 font-size: 24px; 31 font-size: 24px;
32 padding: 3px; 32 padding: 3px;
33 width: 100%; 33 width: 100%;
@@ -69,7 +69,7 @@ body {
69 font-size: .75em; 69 font-size: .75em;
70} 70}
71 71
72#flash { 72#flash, #error_explanation li {
73 color: black; 73 color: black;
74 background-color: white; 74 background-color: white;
75 padding: .75em; 75 padding: .75em;
@@ -80,7 +80,7 @@ body {
80 box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75); 80 box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
81} 81}
82 82
83.flash-alert { 83.flash-alert, #error_explanation li {
84 border-left: 5px solid red; 84 border-left: 5px solid red;
85} 85}
86 86
@@ -91,3 +91,18 @@ body {
91.flash-tag { 91.flash-tag {
92 font-weight: bold; 92 font-weight: bold;
93} 93}
94
95#error_explanation {
96 h2 {
97 display: none;
98 }
99
100 ul {
101 margin-top: 0;
102 padding: 0;
103 }
104
105 li {
106 list-style-type: none;
107 }
108}