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

Created Light and Dark Mode theme for the homepage #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 15 additions & 1 deletion services.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Our Services</title>
<script>
document.addEventListener('contextmenu',event => event.preventDefault());
</script>
<style>
body{
/* body{
background-color: black;
} */

/* Light Mode Styles */
body {
background-color: #edbdbd;
color: #000000;
}

/* Dark Mode Styles */
body.dark-mode {
background-color: #000000;
color: #e48787;
}
.servicebox{
padding:135px 25px 15px;
Expand Down Expand Up @@ -106,6 +119,7 @@
<body>
<br>
<div class="demo">
<button onclick="document.body.classList.toggle('dark-mode')" ><i class="fa fa-cloud" style="font-size:60px;color:lightblue;text-shadow:2px 2px 4px #000000;"></i></button>
<div class="container">
<div class="row">
<div class="col-md-3">
Expand Down