Fixed ordering of the application of the styles
[rodin/chimara.git] / tests / style.css
index 5c6c147f547ad55ac2f74c9f59487f9065da0a35..2504e9f0d0d53c3a6fcacb58729ba0e25c334e5a 100644 (file)
@@ -1,4 +1,8 @@
-/* Possible selectors:
+/* Possible windows:
+ * grid
+ * buffer
+ *
+ * Possible selectors:
  * normal
  * emphasized
  * preformatted
@@ -10,6 +14,7 @@
  * input
  * user1
  * user2
+ * hyperlink
  *
  * Possible style hints:
  * font-family (string)
  * background-color (#hex-value)
  * text-align (left/right/center)
  */
+grid.normal {
+       font-size: 10;
+}
+
+grid.user1 {
+       color: #303030;
+       background-color: #ffffff;
+}
+
 buffer.normal {
-       font-size: 12;
+       font-size: 10;
 }
 
 buffer.header {
-       font-size: 18;
+       font-size: 14;
        font-weight: bold;
        text-align: center;
 }
 
 buffer.subheader {
-       font-size: 14;
+       font-size: 12;
        font-weight: bold;
 }
 
@@ -51,6 +65,8 @@ buffer.block-quote {
 }
 
 buffer.input {
+       color: #0000aa;
+       font-style: italic;
 }
 
 buffer.user1 {
@@ -58,3 +74,7 @@ buffer.user1 {
 
 buffer.user2 {
 }
+
+buffer.hyperlink {
+       color: #ff0000;
+}