summaryrefslogtreecommitdiffstats
path: root/core/static/css/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'core/static/css/styles.css')
-rw-r--r--core/static/css/styles.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/core/static/css/styles.css b/core/static/css/styles.css
new file mode 100644
index 0000000..23064c6
--- /dev/null
+++ b/core/static/css/styles.css
@@ -0,0 +1,53 @@
+.format-container {
+ margin: 20px;
+ display: flex;
+ justify-content: space-evenly;
+ align-items: flex-start;
+ height: 300px;
+ gap: 1em;
+}
+
+.form-thing {
+ width: 50%;
+ border-style: solid;
+ border-width: 5px 2px;
+ border-color: black;
+ padding: 20px;
+ background-color: #dbefff;
+ margin: auto;
+}
+
+.ep-table {
+ font-size: small;
+ border: 1px solid;
+ border-collapse: collapse;
+ color: black;
+ border-spacing: 0;
+}
+
+.summary-table {
+ font-size: small;
+ border: 1px solid;
+ border-collapse: collapse;
+ color: black;
+ border-spacing: 0;
+}
+
+.summary-table > tbody > tr > td {
+ border: 1px solid;
+}
+
+
+.ep-table > thead > tr > th {
+ padding: 10px;
+ border: 1px solid;
+}
+
+.ep-table > tbody > tr > td {
+ border: 1px solid;
+ padding: 3px;
+}
+
+.ep-table > tbody > tr > td > ul > li > a {
+ color: green;
+}