-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from xreedev/Day-2
Day 2
- Loading branch information
Showing
13 changed files
with
493 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@import url('./header.css'); | ||
@import url('./table.css'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.