-
Notifications
You must be signed in to change notification settings - Fork 447
StyleSheets
Vitalii Koshura edited this page Apr 12, 2023
·
3 revisions
The appearance of a project web site is controlled by Cascading Style Sheets (CSS). The BOINC web code uses Twitter Bootstrap CSS. It will use the files
bootstrap.min.css
bootstrap.min.js
jquery.min.js
in your project's html/user directory. make_project initializes to the standard files. You can replace them as you like.
To customize your web site:
- Use a Bootstrap "theme". You can find some at:
Or make your own:
https://pikock.github.io/bootstrap-magic/app/index.html#!/editor
- Add your own CSS, to be added after Bootstrap. To do this, put
define("STYLESHEET", "your_stylesheet.css");`
in the file html/project/project.inc
.