diff --git a/css/main.css b/css/main.css
index f76c2dd..aa5409c 100644
--- a/css/main.css
+++ b/css/main.css
@@ -1,3 +1,14 @@
+/* General */
+.error {
+ border: 1px solid red;
+ border-radius: 3px;
+ background-color: rgba(255, 0, 0, 0.5);
+ padding: 5px;
+ font-size: 2em;
+ font-family: "Helvetica", Arial, sans-serif;
+}
+
+/* Editor */
.invalid {
background-color: red;
color: white !important;
@@ -13,11 +24,24 @@
height: 100%;
}
-.error {
- border: 1px solid red;
- border-radius: 3px;
- background-color: rgba(255, 0, 0, 0.5);
- padding: 5px;
- font-size: 2em;
- font-family: "Helvetica", Arial, sans-serif;
+/* Index */
+.prev-list {
+ padding: 0px;
+ margin: 0px;
+}
+
+.prev-list > li {
+ display: inline-block;
+ width: 30%;
+ list-style: none;
+ margin: 5px;
+ padding: 5px;
+ border: #CCC 1px solid;
+ border-radius: 3px;
+}
+
+.prev-list > li > a,
+.prev-list > li > a:visited {
+ text-decoration: none;
+ color: blue;
}
diff --git a/index.html b/index.html
index 1ddfaf4..58bb225 100644
--- a/index.html
+++ b/index.html
@@ -13,7 +13,14 @@
+
+