Skip to content

Commit

Permalink
Merge pull request #1 from xreedev/Day-2
Browse files Browse the repository at this point in the history
Day 2
  • Loading branch information
xreedev authored Jul 25, 2024
2 parents dedf04a + 863c7b8 commit e82ddcf
Show file tree
Hide file tree
Showing 13 changed files with 493 additions and 150 deletions.
Empty file added README.md
Empty file.
2 changes: 2 additions & 0 deletions css/events.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import url('./header.css');
@import url('./table.css');
61 changes: 61 additions & 0 deletions css/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
:root {
--new-black: #1f2833; /* Dark blueish black */
--light-orange: #66ffcc; /* Turquoise */
--new-white: #eef5db; /* Pale greenish white */
--light-brown: #9a8c98; /* Dusty lavender */
--background-color: #e0e0e0;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body,
html {
background-color: var(--background-color);
height: 100%;
font-family: monospace;
}

.page-container {
text-align: center;
padding: 1%;
position: relative;
}

.title-header {
font-family: Georgia, "Times New Roman", Times, serif, Courier, monospace;
font-size: 2.3rem;
font-weight: bold;
color: var(--new-black);
}

.todo-header {
width: 100%;
background-color: var(--new-black);
color: var(--light-orange);
padding: 2%;
}

.contents-div {
margin: 20px auto;
font-size: large;
font-weight: bold;
width: 80%;
max-width: 600px;
border-radius: 5px;
}

.warning-popup {
position: absolute;
top: 50%;
border-radius: 20px;
left: 50%;
transform: translate(-50%, 50%);
background-color: #32e0c4;
font-size: 15px;
font-weight: bold;
border: none;
}
83 changes: 40 additions & 43 deletions styles.css → css/styles.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,4 @@
:root {
--new-black: #1f2833; /* Dark blueish black */
--light-orange: #66ffcc; /* Turquoise */
--new-white: #eef5db; /* Pale greenish white */
--light-brown: #9a8c98; /* Dusty lavender */
--background-color: #e0e0e0;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body,
html {
background-color: var(--background-color);
height: 100%;
font-family: monospace;
}

.page-container {
text-align: center;
padding: 5%;
}

.csv-input-div {
margin: 20px auto;
font-size: large;
font-weight: bold;
width: 80%;
max-width: 600px;
border-radius: 5px;
}
@import url("./header.css");

.upload-csv-div {
background-color: var(--new-black);
Expand All @@ -41,11 +8,16 @@ html {
padding: 10px;
}

.title-header {
font-family: Georgia, "Times New Roman", Times, serif, Courier, monospace;
font-size: 2.3rem;
.warning-popup {
position: absolute;
top: 50%;
border-radius: 20px;
left: 50%;
transform: translate(-50%, 50%);
background-color: #32e0c4;
font-size: 15px;
font-weight: bold;
color: var(--new-black);
border: none;
}

.input-file {
Expand All @@ -70,11 +42,30 @@ html {
margin-top: 20px;
}

.goto-button {
background-color: var(--new-black);
border-radius: 5px;
border: 2px solid var(--light-orange);
width: 50%;
color: var(--light-orange);
max-width: 200px;
height: 35px;
font-weight: bold;
margin-bottom: 20px;
margin-top: 20px;
}

.submit-csv-button:hover {
background-color: var(--new-white);
border: 1px solid var(--light-orange);
}

.goto-button:hover {
background-color: var(--new-white);
border: 3px solid var(--new-black);
color: var(--new-black);
}

.csv-type-select {
width: 80%;
max-width: 300px;
Expand All @@ -88,9 +79,15 @@ html {
font-family: Arial, Helvetica, sans-serif;
}

.todo-header {
width: 100%;
background-color: var(--new-black);
color: var(--light-orange);
padding: 2%;
.close-btn {
width: 90px;
margin-top: 5px;
background-color: red;
color: #32e0c4;
font-weight: bold;
border: 1px solid red;
border-radius: 20px;
padding: 5px;
text-align: center;
cursor: pointer;
}
28 changes: 28 additions & 0 deletions css/table.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* code pen table */
table {
border-collapse: collapse;
width: 100%;
}

td, th {
border: 1px solid #dddddd;
text-align: center;
padding:6px 20px;
}
tr th {
border: 1px solid #dddddd;
text-align: center;
padding:6px 20px;
background-color: #ad1e23;
color:#fff;
}

tr:hover {
background-color: #dddddd;
cursor: pointer;
}

.content td, .content th {
border-top: 1px solid transparent;
padding: 2px 10px 2px 15px;
}
11 changes: 11 additions & 0 deletions css/tasks.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@import url('./header.css');
@import url('./table.css');

.confirm-button{
width: 100px;
height: 20px;
border-radius: 20px;
background-color: black;
color: azure;
margin-top: 50px;
}
33 changes: 33 additions & 0 deletions events.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Event Manager</title>
<link rel="stylesheet" href="./css/events.css" />
</head>
<body>
<div class="todo-header">
<h1>EVENT MANAGER</h1>
</div>
<div class="page-container">
<div class="title-header">EVENTS</div>
<div class="contents-div">
<div class="events-container">
<table id="events-table">
<tr>
<th>Event Id</th>
<th><strong>Event Name</strong></th>
<th><strong>Start date</strong></th>
<th><strong>End date</strong></th>
<th><strong>Progress</strong></th>
<th><strong>Action</strong></th>
</tr>
</table>
</div>
</div>
<div class="warning-popup" id="warning-popup">
<div id="warning-msg"></div>
</div>
</div>
<script src="./scripts/events.js"></script>
</body>
</html>
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<html>
<head>
<title>Event Manager</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="todo-header">
<h1>EVENT MANAGER</h1>
</div>
<div class="page-container">
<div class="title-header">UPLOAD CSV</div>
<div class="csv-input-div">
<div class="contents-div" id="csv-input-div">
<div class="upload-csv-div">
<label for="csv-type-select" class="csv-type-label"
>Select the type of CSV and upload</label
Expand All @@ -35,8 +35,14 @@ <h1>EVENT MANAGER</h1>
onclick="submitCsv()"
/>
</div>
<div class="goto-page">
<a href="events.html"><button class="goto-button">Events</button></a>
</div>
</div>
<div class="warning-popup" id="warning-popup">
<div id="warning-msg"></div>
</div>
</div>
<script src="script.js"></script>
<script src="./scripts/script.js"></script>
</body>
</html>
104 changes: 0 additions & 104 deletions script.js

This file was deleted.

Loading

0 comments on commit e82ddcf

Please sign in to comment.