first commit
This commit is contained in:
86
styles.css
Normal file
86
styles.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user