Index: chrome/content/firstrun/style.css |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/chrome/content/firstrun/style.css |
@@ -0,0 +1,51 @@ |
+@charset "utf-8"; |
+/* CSS Document */ |
+ |
+/* font face settings */ |
+@font-face {font-family: 'DesignosaurRegular';src: url('designosaur-regular-webfont.woff') format('woff');font-weight: normal;font-style: normal;} |
Wladimir Palant
2016/12/01 13:13:44
I removed font formats other than WOFF here.
|
+ |
+h1, h2, h3, h4, h5, h6, .button {font-family:"DesignosaurRegular";} |
+/* -- */ |
+ |
+/* default elements */ |
+body, html {font-family:Arial, Helvetica, sans-serif;font-size:12px;background-color:#E7F0F9;} |
Wladimir Palant
2016/12/01 13:13:43
This was originally using a one-pixel background i
|
+strong {font-weight:bold;} |
+em {font-style:italic;} |
+.align-center {text-align:center;} |
+.float-left {float:left;} |
+.float-right {float:right;} |
+h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a {font-size:16px;color:#3c3c3c;} |
+p {font-size:12px;line-height:18px;padding:0 0 20px 0;color:#8c8c8c;} |
+/* -- */ |
+ |
+/* additional elements */ |
+#page {width:980px;margin:10px auto;background:#fff;border:0px solid #e8e8e8;} |
+ |
+.frame {padding:35px;} |
+/* -- */ |
+ |
+/* top structure */ |
+#top {background:#fff;border-bottom:7px solid #f6f6f6;} |
+#top .frame {padding:20px;} |
+#top h1 {float:left;font-size:12px;color:#bebebe;} |
+#top h1 a {color:#bebebe;} |
+#top h1 img {margin:0 20px 3px 0;} |
+#top h3 {float:right;line-height:30px;color:#cd2027;} |
+#top h3 a {color:#cd2027;} |
+/* -- */ |
+ |
+/* middle structure */ |
+#middle {background:#fcfcfc;border-bottom:1px solid #fff;border-top:1px solid #d1d1d1;} |
+#middle .frame {padding:35px 35px 15px 35px;} |
+#middle h2 {font-size:32px;padding:10px 0 20px 0;line-height:40px;} |
+/* -- */ |
+ |
+/* footer */ |
+#footer {padding:0 20px;background:#222;} |
+#footer p {line-height:54px;padding:0;float:left;} |
+#footer p a {color:#dd8c5c;} |
+#footer .social {float:right;line-height:50px;} |
+#footer .social li {display:inline;padding:0 0 0 2px;} |
+#footer .social a {opacity:0.7;} |
+#footer .social a:hover {opacity:1;} |
+/* -- */ |
Wladimir Palant
2016/12/01 13:13:44
This document was considerably larger originally,
|