aboutsummaryrefslogtreecommitdiff
path: root/public/css/master.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/css/master.css')
-rw-r--r--public/css/master.css101
1 files changed, 83 insertions, 18 deletions
diff --git a/public/css/master.css b/public/css/master.css
index 5bebdd5..84b0ddf 100644
--- a/public/css/master.css
+++ b/public/css/master.css
@@ -217,9 +217,40 @@ table.computers {
width: 100%;
}
-td.computer {
- width: 50%;
- border: 0;
+table.computers td:first-child {
+ text-align: center;
+ font-weight: bold;
+}
+table.computers td ul {
+ margin: 0;
+ padding-left: 20px;
+}
+
+table.computers section-title {
+ text-decoration: underline;
+ font-style: italic;
+ font-weight: bold;
+}
+
+table.computers p.description {
+ font-style: italic;
+ margin: 5px 0 2px 0;
+}
+
+table.computers th {
+ background-color: var(--background-light);
+}
+
+table.computers td,
+table.computers th {
+ border: var(--foreground) solid 1px;
+ padding: 5px;
+}
+
+
+
+img.pixel {
+ image-rendering: pixelated;
}
div.footer {
@@ -227,6 +258,10 @@ div.footer {
margin-bottom: 5px;
}
+div.footer a:hover {
+ text-decoration: none;
+}
+
table.commits tr td {
border: none;
padding-right: 5px;
@@ -356,33 +391,63 @@ a:hover {
text-decoration: underline;
}
-.computer {
- width: 100%;
+.spec {
+ padding-left: 20px;
}
-.computer td {
- border: none;
+.spec-title {
+ font-weight: bold;
}
-.computer h1,
-.computer hr {
- margin: 0;
+.project-grid {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ grid-template-rows: repeat(0, 1fr);
+ grid-column-gap: 0;
+ grid-row-gap: 0;
+ height: 100%;
}
-.computer .computer-image {
- width: 256px;
+.project-grid div {
+ padding: 5px;
}
-.spec {
- padding-left: 20px;
+.project-section-title,
+.project-grid div h1,
+.project-grid div p {
+ margin: 5px 0;
}
-.spec-title {
- font-weight: bold;
+.project-section-title {
+ margin-top: 20px;
+ padding-bottom: 5px;
+ border-bottom: 1px solid var(--foreground);
}
-.computer-specs {
- margin-top: 5px;
+.project-grid div h1 {
+ margin-top: 10px;
+}
+
+.project-grid div a {
+ text-decoration: none;
+ padding: 2px 2px 0 2px;
+ margin: 0;
+ font-size: 10pt;
+}
+
+.project-grid .project-links a {
+ color: var(--links);
+ border: 1px solid var(--foreground);
+ border-left: none;
+}
+
+.project-grid .project-links a:first-child {
+ border: 1px solid var(--foreground);
+}
+
+.project-grid .project-links a:hover {
+ background-color: var(--foreground);
+ color: var(--background);
}
.error-box {