Compare commits

..
2 Commits
Author SHA1 Message Date
westfarn 9d3159027e Add Django unit tests for public pages, forms, models, Stripe, and auth.
CI / test (pull_request) Successful in 3s
Unit Tests / test (pull_request) Successful in 3s
Gives CI/deploy workflows something real to run so PRs and master pushes are gated on coverage of core schasite behavior.
2026-07-14 05:21:34 -05:00
westfarn 2081210b78 Dockerize scha and wire Gitea CI/CD for server-infra deploy.
CI / test (pull_request) Successful in 4s
Unit Tests / test (pull_request) Successful in 3s
Move secrets and DB config to env-driven settings so prod can run on shared Postgres behind deploy.sh, matching company_site.
2026-07-14 05:11:41 -05:00
+21
View File
@@ -1,4 +1,5 @@
/* CSS Document */ /* CSS Document */
{% load static %}
body{ body{
margin:0px; margin:0px;
background-repeat: repeat; background-repeat: repeat;
@@ -12,6 +13,10 @@ h1{
} }
h1 span{color:#979797;} h1 span{color:#979797;}
.clear{margin:0px; padding:0px; clear:both;} .clear{margin:0px; padding:0px; clear:both;}
.top-head{
height:118px; width:1000px; margin:auto;
background:url(../images/top-head.gif) repeat-x;
}
.logo{ .logo{
height:103px; width:325px; height:103px; width:325px;
float:left; padding:15px 0px 0px 55px; float:left; padding:15px 0px 0px 55px;
@@ -67,6 +72,22 @@ h1 span{color:#979797;}
padding-left:22px; font-weight:bold; padding-left:22px; font-weight:bold;
background-position: 6px; background-position: 6px;
} }
.top-body{
height:auto; width:940px; margin:auto;
background: url(../images/top-body.gif) repeat-x #cfcfcf;
padding:0px 0px 25px 60px;
}
.top-body-con{
height:auto; width:265px; float:left;
padding:0px 35px 0px 0px;
}
.top-body-con p{
margin:0px; padding:30px 0px 0px 0px;
font-family:Verdana, Arial, Helvetica, sans-serif; color:#2e2e2e;
font-size:11px; font-weight:bold; line-height:26px;
}
.top-body-con a{color:#63880a;}
.top-body-con span{color:#63880a; font-size:15px;}
.img-box{ .img-box{
height:auto; width:auto; float:left; height:auto; width:auto; float:left;
padding:30px 25px 0px 0px; padding:30px 25px 0px 0px;