Skip to content

Commit

Permalink
added back style body
Browse files Browse the repository at this point in the history
  • Loading branch information
coldcanuk committed Aug 21, 2023
1 parent ea2f501 commit e5a5b63
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,57 @@
<title>Pitre Info</title>
<link rel="stylesheet" href="css/styles.css">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background: url('https://pitrewebpagestorage.blob.core.windows.net/$web/images/pitreinfo-background.png') no-repeat center center fixed;
background-size: cover;
margin: 0;
padding: 0;
color: #fff;
}

header {
background-color: rgba(0, 0, 0, 0.8);
padding: 10px 0;
border-bottom: 3px solid #fff;
}

header h1 {
color: #FFD700; /* Gold color for better visibility */
font-size: 24px;
}

.video-container {
position: relative;
width: 320px;
margin: 50px auto;
background-color: rgba(0, 0, 0, 0.6);
padding: 10px;
border-radius: 10px;
}

button {
position: absolute;
bottom: 10px;
right: 10px;
background-color: rgba(0, 0, 0, 0.6);
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 5px;
}

button:hover {
background-color: rgba(0, 0, 0, 0.8);
}

main p, footer p {
background-color: rgba(0, 0, 0, 0.6);
padding: 10px;
border-radius: 5px;
}
/* Sidebar styles */
.sidebar {
height: 100%;
Expand Down

0 comments on commit e5a5b63

Please sign in to comment.