diff options
Diffstat (limited to 'src/static/stylesheets/projects.css')
| -rw-r--r-- | src/static/stylesheets/projects.css | 51 |
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; +} |
