Skip to content

Commit

Permalink
Merge pull request #31 from Codycody31/main
Browse files Browse the repository at this point in the history
Chore and Style enhancements for better functionality and appearance
  • Loading branch information
Vahn Gomes authored Jul 21, 2023
2 parents 4f15e2f + 110b10c commit bc81bac
Show file tree
Hide file tree
Showing 5 changed files with 198 additions and 100 deletions.
36 changes: 35 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,55 @@
# Ignore PHPUnit cache
/src/.phpunit.cache

# Ignore Node.js modules
/src/node_modules

# Ignore Laravel Mix build directory
/src/public/build

# Ignore Laravel Mix hot module replacement files
/src/public/hot

# Ignore Laravel public storage directory
/src/public/storage

# Ignore Laravel storage encryption keys
/src/storage/*.key

# Ignore Composer vendor directory
/src/vendor

# Ignore application version file
/src/version

# Ignore environment files
.env
.env.backup
.env.production

# Ignore PHPUnit result cache
.phpunit.result.cache

# Ignore Homestead configuration files
Homestead.json
Homestead.yaml

# Ignore Composer auth credentials
auth.json

# Ignore NPM debug log
npm-debug.log

# Ignore Yarn error log
yarn-error.log

# Ignore Fleet configuration
/.fleet

# Ignore IDE-specific files
/.idea
/.vscode
.idea
.idea

# Ignore SonarQube scanner workspace
.scannerwork
4 changes: 4 additions & 0 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then
chown -R www-data:www-data ${STORAGE}
chmod -R g+rw ${STORAGE}

# Generate key if not set
if [ -z "${APP_KEY:-}" -o "$APP_KEY" = "ChangeMeBy32KeyLengthOrGenerated" ]; then
${ARTISAN} key:generate --no-interaction
else
echo "APP_KEY already set"
fi

# Link public storage
${ARTISAN} storage:link
fi

exec "$@"
64 changes: 39 additions & 25 deletions src/public/lib/css/overrides.css
Original file line number Diff line number Diff line change
@@ -1,39 +1,53 @@
body{
/*background: rgb(38, 77, 128)!important;*/
body {
background: rgb(40, 75, 99);
font-size:0.9em;
font-size: 16px;
font-family: Arial, sans-serif;
}
.form-label{
font-weight:700;

.form-label {
font-weight: 700;
text-transform: uppercase;
}

.form-control,
.form-select{
color: rgb(38, 77, 128);
text-transform:uppercase;
.form-select {
color: #26507f;
text-transform: uppercase;
outline: none;
font-size:0.9em;
font-size: 1em;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-holder{

.form-holder {
background: rgb(217, 217, 217);
}
.btn-primary{
background:rgb(60, 110, 113);
color: rgb(255, 255, 255);
border:0;
font-size:0.9em;

.btn-primary {
background: #3c6e71;
color: #fff;
border: 0;
font-size: 1em;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}

.btn-primary:hover {
background: #2a5255;
}

.hide{
display:none;
.hide {
display: none;
}

.loading{
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
background: rgba(0,0,0,0.5);
z-index:9999;
.loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 9999;
}
Loading

0 comments on commit bc81bac

Please sign in to comment.