diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-05-27 00:53:18 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-05-27 00:55:26 -0700 |
| commit | 36e053f4f0a2f63c08f7c28b9492c067f1ca42bc (patch) | |
| tree | c28973073c8e26775ee4d18d1016df44afdfeceb /moe.pinapelz.com/styles/projects.css | |
| parent | a01e0666fd66c367745cdaff76fcd6ea7568c31c (diff) | |
migrate pinapelz.moe -> pinapelz.com
Diffstat (limited to 'moe.pinapelz.com/styles/projects.css')
| -rw-r--r-- | moe.pinapelz.com/styles/projects.css | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/moe.pinapelz.com/styles/projects.css b/moe.pinapelz.com/styles/projects.css new file mode 100644 index 0000000..5b00204 --- /dev/null +++ b/moe.pinapelz.com/styles/projects.css @@ -0,0 +1,76 @@ +.projects-section { + margin-top: 20px; + padding: 10px; + background: #ffebf0; + border: solid #ffb6c1 2px; +} +.projects-section h3 { + color: #ff69b4; + text-shadow: 1px 1px 2px #fff; +} +.projects-section ul { + list-style-type: disc; + padding-left: 20px; +} +.projects-section ul li { + margin-bottom: 10px; +} + +.projects-section .image-container { + display: flex; + flex-wrap: wrap; + gap: 10px; +} +.projects-section .image-container img { + max-width: 100%; + height: auto; + cursor: pointer; + transition: transform 0.2s; +} +.projects-section .image-container img:hover { + transform: scale(1.05); +} + +.fullscreen-img { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.9); + justify-content: center; + align-items: center; + z-index: 1000; +} +.fullscreen-img img { + max-width: 90%; + max-height: 90%; +} + +@media (max-width: 768px) { + .projects-section { + padding: 5px; + } + + .projects-section h3 { + font-size: 1.5em; + } + + .projects-section ul { + padding-left: 10px; + } + + .projects-section ul li { + margin-bottom: 5px; + } + + .projects-section .image-container { + flex-direction: column; + align-items: center; + } + .projects-section .image-container img { + width: 100%; + height: auto; + } +}
\ No newline at end of file |
