- Timestamp:
- Oct 20, 2023, 12:18:32 AM (20 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.gitignore
r53 r54 1 _build/simplytranslate 2 *.gz -
trunk/Makefile
r51 r54 2 2 3 3 build: 4 go build -v ./cmd/simplytranslate 4 mkdir _build 5 go build -v -o _build/simplytranslate ./cmd/simplytranslate 5 6 clean: 6 rm - f simplytranslate7 rm -rf _build 7 8 install: 8 install -Dm0755 simplytranslate ${DESTDIR}${PREFIX}/bin/simplytranslate9 install -Dm0755 _build/simplytranslate ${DESTDIR}${PREFIX}/bin/simplytranslate 9 10 mkdir -p ${DESTDIR}${PREFIX}/share/simplytranslate 10 11 cp -R static views ${DESTDIR}${PREFIX}/share/simplytranslate 11 @echo "Remember to launch the program with -s ${DESTDIR}${PREFIX}/share/simplytranslate/static -t ${DESTDIR}${PREFIX}/share/simplytranslate/views"12 12 uninstall: 13 13 rm -f ${DESTDIR}${PREFIX}/bin/simplytranslate -
trunk/static/style.css
r51 r54 1 /* 2 Light theme is based on Lavender (https://github.com/mei23/misskey/blob/mei-m544/src/client/themes/lavender.json5) 3 while the Dark theme is based on エレガントなお嬢様 (https://github.com/mei23/misskey/blob/mei-m544/src/client/themes/promo.json5) 4 */ 5 1 6 body { 2 background-color: #f fffff;7 background-color: #f8cfd2; 3 8 color: rgb(206, 147, 191); 4 9 } … … 50 55 } 51 56 button { 57 background-color: #ce93bf; 58 color: #ffffff; 52 59 font-size: 1rem; 53 60 padding: 4px 10px; … … 74 81 textarea:focus, 75 82 button:focus { 76 border-color: # 478061;77 outline: 1px solid # 478061;83 border-color: #faf4f8; 84 outline: 1px solid #faf4f8; 78 85 } 79 86 … … 128 135 } 129 136 @media screen and (prefers-color-scheme: dark) { 130 /* Loosely based on エレガントなお嬢様 - https://github.com/mei23/misskey/blob/mei-m544/src/client/themes/promo.json5 */131 137 body { 132 138 background-color: #700000;
Note:
See TracChangeset
for help on using the changeset viewer.