Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I make changes on ui part which is going to be more intresting than previous #725

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion Contributors/contributor.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div style="padding: 20px;">
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i> &nbsp; Return to Home</a>
</div>

</div>
<section class="contributor-stats">
<h2>Project Statistics</h2>
<div class="contributor-stats-grid" id="statsGrid">
Expand Down
2 changes: 2 additions & 0 deletions contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div style="padding: 20px;">
<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i> &nbsp; Return to Home</a>
</div>
</div>

<section class="contributor-stats">
<h2>Project Statistics</h2>
Expand Down
15 changes: 11 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,12 @@
background-color: rgba(0, 0, 255, 0.1); /* Subtle blue background */
border-radius: 5px; /* Rounded edges for a smoother look */
}
#changes {
padding-right: 31px;
/* this is for branch changes commit */
}


</style>
<div id="popup-nl" class="popup-nl">
<div class="popup-content-nl">
Expand Down Expand Up @@ -604,24 +610,25 @@ <h2 class="primary-btn" id="logoutButton" style="display: none;">
</div>

<!-- Player name displayed here -->
<div id="changes">
<div class="controlGroup">
<span id="displayName" class="playerName"></span>
</div>
</div> </div>
<button id="pauseBtn">Pause</button>
<div class="controlGroup">
<button id="startButton"><i class="fas fa-play"></i> Start Game</button>
<button id="pauseButton" style="display: none"><i class="fas fa-play"></i> Game paused</button>
<button id="restartButton" style="display: none"><i class="fas fa-redo"></i> Play Again </button>
</div>

<div class="theme-switch-wrapper">
<!-- <div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="slider"></div>
</label>

<span id="mode-label">Light Mode</span>
</div>
</div> -->
<!-- <div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
Expand Down