Browse Source

W2.3: styling with accounts-ui-unstyled.

Frederic G. MARAND 9 years ago
parent
commit
54fbfde345
5 changed files with 12 additions and 5 deletions
  1. 1 1
      .meteor/packages
  2. 0 1
      .meteor/versions
  3. 4 1
      textcircle.css
  4. 1 1
      textcircle.css.map
  5. 6 1
      textcircle.scss

+ 1 - 1
.meteor/packages

@@ -24,4 +24,4 @@ spacebars
 check
 ecmascript
 accounts-password
-accounts-ui
+accounts-ui-unstyled

+ 0 - 1
.meteor/versions

@@ -1,6 +1,5 @@
 accounts-base@1.2.2
 accounts-password@1.1.4
-accounts-ui@1.1.6
 accounts-ui-unstyled@1.1.8
 autopublish@1.0.4
 autoupdate@1.2.4

+ 4 - 1
textcircle.css

@@ -1,6 +1,6 @@
 /* Workaround BS3 fixed navbar height
 body {
-	padding-top: 70px;
+  padding-top: 70px;
 }
 */
 .top-margin {
@@ -11,4 +11,7 @@ body {
   resize: both;
   width: 100%; }
 
+.accounts-dialog {
+  background-color: green; }
+
 /*# sourceMappingURL=textcircle.css.map */

+ 1 - 1
textcircle.css.map

@@ -1,6 +1,6 @@
 {
 "version": 3,
-"mappings": "AAAA,8BAA8B;AAE9B,WAAY;EACX,UAAU,EAAE,IAAI;;AAGjB,cAAe;EACd,MAAM,EAAE,cAAc;EACtB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI",
+"mappings": "AAAA;;;;EAIE;AAIF,WAAY;EACV,UAAU,EAHA,IAAI;;AAMhB,cAAe;EACb,MAAM,EAAE,cAAc;EACtB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;;AAGb,gBAAiB;EACf,gBAAgB,EAAE,KAAK",
 "sources": ["textcircle.scss"],
 "names": [],
 "file": "textcircle.css"

+ 6 - 1
textcircle.scss

@@ -6,11 +6,16 @@ body {
 
 $topMargin: 50px;
 
-.top-margin{
+.top-margin {
   margin-top: $topMargin;
+}
 
 #viewer_iframe {
   border: 1px solid gray;
   resize: both;
   width: 100%;
 }
+
+.accounts-dialog {
+  background-color: green;
+}