Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
*DS_Store*
*.log
*.db
*.yaml
audio/
data/
sessions/
img/
fonts/
tmp/
cmake-*
*build*
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ set(PROJECT_SOURCE_FILES
src/av_io.cpp
src/wadinfo.cpp
src/dol.cpp
src/post_handlers.cpp
)

include_directories(include)
Expand Down
Binary file added audio/click.wav
Binary file not shown.
178 changes: 118 additions & 60 deletions css/ff.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,39 @@
src: url('../fonts/font.woff2') format('woff2');
}

.floating_window {
position: fixed;
min-width: 300px;
min-height: 100px;
max-width: 90vw;
max-height: 90vh;

top: 50%;
left: 50%;
transform: translate(-50%, -50%);

border-radius: 10px;
padding: 10px;
z-index: 9999;
text-align: center;

overflow-y: auto;
overflow-x: hidden;

box-sizing: border-box;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* buttons */
#login-button, #login-window {
#login-button, #login-window, #tos-window {
background-color: #a9def9;
color: #000;
}
#register-button, #register-window {
background-color: #ff99c8;
color: #000;
}
#logout-button {
#logout-button, #logout-window {
background-color: #f08080;
color: #000;
}
Expand All @@ -36,7 +59,11 @@
background-color: #000000;
color: #fff;
}
#forum-button, #forum-window {
#forum-button {
background-color: #f0f0f0;
color: #000;
}
.forum_window {
background-color: #f0f0f0;
color: #000;
}
Expand All @@ -56,6 +83,25 @@
background-color: #fcf6bd;
color: #000;
}
#browse-window, #sandbox-window {
min-width: 90%;
min-height: 90%;
}

#announcements-window, #announcement-window, #create-announcement-window {
min-width: 60%;
min-height: 60%;
}

#view-window, #file-window, .forum_window {
min-width: 70%;
min-height: 70%;
}

#profile-window, #edit-profile-window, #terms-window {
min-width: 50%;
min-height: 50%;
}
.announcement_div {
background-color: #fff;
color: #000;
Expand Down Expand Up @@ -110,16 +156,6 @@ body {
overflow: auto;
}

.link_box {
background-color: #f0f0f0; /* default, if you don't override through classes or IDs */
color: #000000; /* default, if you don't override through classes or IDs */
border-radius: 10px;
padding: 10px;
margin-top: 10px;
min-width: 300px;
text-align: center;
}

.link_box_container {
display: flex;
flex-direction: column;
Expand All @@ -136,14 +172,29 @@ body {
}

.link_box {
background-color: #f0f0f0; /* default, if you don't override through classes or IDs */
color: #000000; /* default, if you don't override through classes or IDs */
margin-top: 10px;
min-width: 300px;
text-align: center;
flex: 1 1 calc(50% - 1rem);

box-sizing: border-box;
padding: 1rem;
border: 1px solid #ccc;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s;
max-width: 100%;

box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

position: relative;

width: 250px;
height: 100px;

overflow: hidden;
}

@media (max-width: 768px) {
Expand All @@ -162,32 +213,6 @@ body {
font-size: 1rem;
}


.floating_window {
position: fixed;
min-width: 300px;
min-height: 100px;
max-width: 90vw;
max-height: 90vh;

top: 50%;
left: 50%;
transform: translate(-50%, -50%);

border-radius: 10px;
padding: 10px;
z-index: 9999;
text-align: center;

overflow-y: auto;
overflow-x: hidden;

background-color: #70d6ff;
color: #000000;

box-sizing: border-box;
}

.file_div {
background-color: #fafafa;
color: #000000;
Expand All @@ -197,26 +222,6 @@ body {
margin: 10px auto;
}

#browse-window, #sandbox-window {
min-width: 90%;
min-height: 90%;
}

#announcements-window, #announcement-window, #create-announcement-window {
min-width: 60%;
min-height: 60%;
}

#view-window, #file-window, #forum-window {
min-width: 70%;
min-height: 70%;
}

#profile-window, #edit-profile-window, #terms-window {
min-width: 50%;
min-height: 50%;
}

.view_floating_window_comment_meta {
display: flex;
align-items: center;
Expand All @@ -235,7 +240,6 @@ body {
}
}


.view_floating_window_comment_logo {
width: 24px;
height: 24px;
Expand Down Expand Up @@ -317,6 +321,60 @@ body {
color: #000;
}

.post-file {
background-color: #fafafa;
color: #000000;
border-radius: 10px;
padding: 10px;
width: 80%;
margin: 10px auto;
overflow: hidden;
}

.forum-topic {
background-color: #fafafa;
color: #000000;
border-radius: 10px;
width: 80%;
margin: 10px auto;
}

.forum-post {
background-color: aliceblue;
color: #000000;
border-radius: 10px;
width: 80%;
margin: 10px auto;
}

.post-comment {
background-color: aliceblue;
border-radius: 5px;
padding: 5px;
margin-bottom: 10px;
}

#comments_div {
max-height: 500px;
overflow-y: auto;
}

.post-comment-file {
background-color: #fafafa;
color: #7289da;
padding: 5px;
}

.forum-topic:hover, .forum-post:hover, .post-file:hover {
transform: scale(1.025);
transition: transform 0.3s ease;
}

button:hover {
transform: scale(1.025);
transition: transform 0.3s ease;
}

input, button, select, textarea {
background-color: #fafafa;
color: #000000;
Expand Down
Binary file added fonts/font.woff2
Binary file not shown.
4 changes: 4 additions & 0 deletions img/announcements.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/background-logo-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/coin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions img/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading