font
This commit is contained in:
parent
82f9bbfde6
commit
aeec7afa5e
3 changed files with 13 additions and 23 deletions
29
TODO.txt
29
TODO.txt
|
|
@ -1,15 +1,3 @@
|
||||||
v1.0
|
|
||||||
[x] login page
|
|
||||||
[x] logout
|
|
||||||
[x] member profile update and avatar
|
|
||||||
[x] forum
|
|
||||||
[x] anonymous prayerbox
|
|
||||||
[x] view other's profiles, add links in forums
|
|
||||||
[x] member type
|
|
||||||
[x] change password page
|
|
||||||
[x] users must be authed
|
|
||||||
[x] signup must redirect NOT auto grant users access, and MUST give them some info on what to expect
|
|
||||||
|
|
||||||
v1.1
|
v1.1
|
||||||
[ ] polls
|
[ ] polls
|
||||||
[ ] watch forum, get email notifications when someone replies
|
[ ] watch forum, get email notifications when someone replies
|
||||||
|
|
@ -18,13 +6,6 @@ v1.1
|
||||||
[ ] show how many posts a user has made, flair for high amounts of posts?
|
[ ] show how many posts a user has made, flair for high amounts of posts?
|
||||||
[ ] chat room? IRC?
|
[ ] chat room? IRC?
|
||||||
|
|
||||||
TO DISCUSS:
|
|
||||||
[ ] nav bar
|
|
||||||
[ ] page that displays all users and links to their websites (this already exists on neko, but better to automate it)
|
|
||||||
[ ] Pick better anonymous avatar
|
|
||||||
[ ] determine where which pages should live where
|
|
||||||
[ ] easier way to handle sites var, API endpoint?
|
|
||||||
|
|
||||||
ACTION ITEMS:
|
ACTION ITEMS:
|
||||||
DOMINIC ---
|
DOMINIC ---
|
||||||
[x] join option without member area access
|
[x] join option without member area access
|
||||||
|
|
@ -32,13 +13,17 @@ DOMINIC ---
|
||||||
[x] list user api endpoint
|
[x] list user api endpoint
|
||||||
[x] CSS
|
[x] CSS
|
||||||
[x] Assets
|
[x] Assets
|
||||||
|
[ ] Pick better anonymous avatar
|
||||||
|
[ ] figure out backing up DB
|
||||||
[ ] soft-release
|
[ ] soft-release
|
||||||
|
[ ] Domain
|
||||||
[ ] email notifications when user signs up: disroot email
|
[ ] email notifications when user signs up: disroot email
|
||||||
[ ] maybe start sending emails to users automatically too
|
[ ] maybe start sending emails to users automatically too
|
||||||
|
[ ] full-release
|
||||||
|
|
||||||
KYRIE ----
|
KYRIE ----
|
||||||
[ ] Welcome message
|
[x] Welcome message
|
||||||
[ ] Signup screen
|
[x] Signup screen
|
||||||
[ ] new css design
|
[x] new css design
|
||||||
[ ] send out emails to existing users to sign up AFTER website is released
|
[ ] send out emails to existing users to sign up AFTER website is released
|
||||||
|
|
||||||
|
|
|
||||||
BIN
static/fonts/Girassol-Regular.ttf
Normal file
BIN
static/fonts/Girassol-Regular.ttf
Normal file
Binary file not shown.
|
|
@ -9,6 +9,11 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<style>
|
<style>
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Girassol';
|
||||||
|
src: url({% static 'fonts/Girassol-Regular.ttf' %}) format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #868F69;
|
background-color: #868F69;
|
||||||
|
|
@ -25,11 +30,11 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 30px 0;
|
margin: 30px 0;
|
||||||
color: #603814;
|
color: #603814;
|
||||||
font-family: "Girassol", serif;
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-size: 70px;
|
font-size: 70px;
|
||||||
text-shadow: 1px 1px 0px #868F69, 2px 2px 0px #254117;
|
text-shadow: 1px 1px 0px #868F69, 2px 2px 0px #254117;
|
||||||
|
font-family: "Girassol", serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue