first commit

This commit is contained in:
poslop
2024-06-04 16:42:49 -05:00
commit d2992c9e2c
37 changed files with 466 additions and 0 deletions

86
styles.css Normal file
View File

@@ -0,0 +1,86 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
color: white;
background-color: #181a1b;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the side navigation */
.nav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
}
/* Side navigation links */
.nav a {
color: white;
padding: 16px;
text-decoration: none;
display: block;
}
/* Change color on hover */
.nav a:hover {
background-color: #363b3d;
}
/* Style the content */
.content {
margin-left: 200px;
padding-left: 20px;
}
.option {
margin-bottom: 10px;
/* Adds space below each option group */
padding: 10px 0px;
/* Adds padding inside each option group */
border-radius: 5px;
/* Rounds the corners of the option group */
}
.option label {
margin: 5px 0px;
}
.option input {
outline: none;
border: 2px solid #111;
background-color: #111;
color: white;
width: 50%;
padding: 10px 20px;
margin: 10px 0px;
border-radius: 6px;
}
.option input:focus {
background-color: #363b3d;
border: 2px solid #111;
}
.option button {
background-color: #111;
border: 2px solid #111;
color: white;
padding: 16px 32px;
margin: 10px 0px;
border-radius: 6px;
}
.option button:hover {
background-color: #363b3d;
border: 2px solid #111;
}