summaryrefslogtreecommitdiff
path: root/src/static/stylesheets/projects.css
diff options
context:
space:
mode:
authorEmma Terzioglu <emreterzioglu49@gmail.com>2026-03-13 13:49:15 -0700
committerEmma Terzioglu <emreterzioglu49@gmail.com>2026-03-13 13:49:15 -0700
commit7a33856a527aebbd8d2a624c6d5937c25c9a1d90 (patch)
tree855c642394e7ba1de40b8bb8737be12bec0aedaf /src/static/stylesheets/projects.css
initial commit
new website repo yay!!!
Diffstat (limited to 'src/static/stylesheets/projects.css')
-rw-r--r--src/static/stylesheets/projects.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/static/stylesheets/projects.css b/src/static/stylesheets/projects.css
new file mode 100644
index 0000000..f3181ce
--- /dev/null
+++ b/src/static/stylesheets/projects.css
@@ -0,0 +1,51 @@
+.project {
+ max-width: 600px;
+}
+
+.project .project-head {
+ display: flex;
+ flex-direction: row;
+ gap: 12px;
+}
+
+.project-head .project-labels {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+.project-head .project-labels p::after {
+ content: ",";
+ margin-right: 6px;
+}
+
+.project-head .project-labels p:first-child::before {
+ content: "(";
+ margin: 0;
+}
+
+.project-head .project-labels p:last-child::after {
+ content: ")";
+ margin: 0;
+}
+
+.project-links {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+.project-links a::after {
+ content: "|";
+ margin: 0 6px;
+ cursor: none;
+}
+
+.project-links a:last-child::after {
+ content: none;
+ margin: 0;
+}
+
+.project-separator {
+ border: 1px solid black;
+}