Files
2024-06-24 18:04:51 -04:00

114 lines
1.6 KiB
CSS

body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 20px;
padding: 20px;
color: #333;
}
h1 {
color: #0a66c2;
}
label {
font-weight: bold;
margin-right: 10px;
}
input[type="text"],
input[type="password"],
input[type="date"] {
padding: 8px;
margin-top: 5px;
margin-bottom: 20px;
width: 300px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #0a66c2;
}
a:hover {
text-decoration: underline;
}
.hidden {
display: none;
}
#commitList {
overflow: scroll;
overflow-y: auto;
max-height: 30em;
border: grey solid 1px;
padding: 5px;
}
.container {
display: flex;
flex-wrap: wrap;
}
.input-section {
flex: 1 1 300px;
}
.commit-section {
flex: 1 1 300px;
margin-left: 20px;
}
body.dark-mode {
background-color: #333;
color: #f4f4f9;
}
body.dark-mode h1,
body.dark-mode a {
color: #f4f4f9;
}
body.dark-mode input[type="text"],
body.dark-mode input[type="password"],
body.dark-mode input[type="date"],
body.dark-mode button {
background-color: #555;
color: #f4f4f9;
border: 1px solid #777;
}
body.dark-mode button:hover {
background-color: #666;
}
body.dark-mode #commitList {
border: grey solid 1px;
background-color: #444;
color: #f4f4f9;
}